Skip to content

Commit

Permalink
[skip ci] Update bin/supported_ruby_versions to use ruby versions in …
Browse files Browse the repository at this point in the history
…ci.yml (#83)
  • Loading branch information
vsppedro authored Mar 14, 2023
1 parent 90f2b53 commit e7b8eca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/supported_ruby_versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require 'yaml'

travis_config_path = File.expand_path('../../.travis.yml', __FILE__)
travis_config = YAML.load_file(travis_config_path)
puts travis_config.fetch('rvm').join(' ')
ci_config_path = File.expand_path('../../.github//workflows/ci.yml', __FILE__)
ci_config = YAML.load_file(ci_config_path)
puts ci_config.dig('jobs', 'build', 'strategy', 'matrix', 'ruby').join(' ')

0 comments on commit e7b8eca

Please sign in to comment.