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

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