module RuboCop::Version
This module holds the RuboCop
version information.
Constants
- MSG
- STRING
Public Class Methods
version(debug = false)
click to toggle source
# File lib/rubocop/version.rb, line 11 def self.version(debug = false) if debug format(MSG, version: STRING, parser_version: Parser::VERSION, ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION, ruby_platform: RUBY_PLATFORM) else STRING end end