Class: RuboCop::CLI::Command::Version Private
- Defined in:
- lib/rubocop/cli/command/version.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Display version.
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #run ⇒ Object private
Methods inherited from Base
by_command_name, inherited, #initialize
Constructor Details
This class inherits a constructor from RuboCop::CLI::Command::Base
Instance Method Details
#run ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 14 |
# File 'lib/rubocop/cli/command/version.rb', line 11 def run puts RuboCop::Version::STRING if @options[:version] puts RuboCop::Version.verbose(env: env) if @options[:verbose_version] end |