Skip to content

Instantly share code, notes, and snippets.

@jasonkarns
Last active October 9, 2024 18:32
Show Gist options
  • Save jasonkarns/f25751dde72963e7b13c7bf75de44bee to your computer and use it in GitHub Desktop.
Save jasonkarns/f25751dde72963e7b13c7bf75de44bee to your computer and use it in GitHub Desktop.
Print the target ruby version derived by rubocop
namespace :rubocop do
task :ruby do
require "rubocop"
config = RuboCop::ConfigStore.new.for_dir Dir.pwd
target = RuboCop::TargetRuby.new(config)
if Rake.application.options.trace || verbose == true
rake_output_message "derived target ruby version (last wins):"
rake_output_message target.class.const_get(:SOURCES).reverse.map { |s| s.new config }
.map { |s| "#{s.version.inspect} set by #{s}" }
end
puts target.version
end
end
@jasonkarns
Copy link
Author

Prints the resolved target ruby version to STDOUT.

$ rake rubocop:ruby
3.2

In trace or verbose mode, also prints each candidate version and source to STDERR.

$ rake --verbose rubocop:ruby
derived target ruby version (last wins):
2.7 set by default
3.0 set by `required_ruby_version` parameter (in project.gemspec)
nil set by `/path/to/project/Gemfile.lock`
nil set by `.tool-versions`
3.2 set by `.ruby-version`
nil set by `TargetRubyVersion` parameter (in .rubocop.yml)
3.2

@jasonkarns
Copy link
Author

jasonkarns commented Oct 9, 2024

Recent rubocops may also print this information in rubocop's -V version output: rubocop/rubocop#13311

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment