mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
7 lines
195 B
Ruby
Executable file
7 lines
195 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require 'yaml'
|
|
|
|
travis_config_path = File.expand_path('../.travis.yml', __dir__)
|
|
travis_config = YAML.load_file(travis_config_path)
|
|
puts travis_config.fetch('rvm').join(' ')
|