Last active
October 9, 2024 18:32
-
-
Save jasonkarns/f25751dde72963e7b13c7bf75de44bee to your computer and use it in GitHub Desktop.
Print the target ruby version derived by rubocop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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
Prints the resolved target ruby version to STDOUT.
In trace or verbose mode, also prints each candidate version and source to STDERR.