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