This module holds the RuboCop version information.
'0.52.1'.freeze
'%s (using Parser %s, running on %s %s %s)'.freeze
10 11 12 13 14 15 16 17
# File 'lib/rubocop/version.rb', line 10 def self.version(debug = false) if debug format(MSG, STRING, Parser::VERSION, RUBY_ENGINE, RUBY_VERSION, RUBY_PLATFORM) else STRING end end