class RuboCop::CLI::Command::Version

@api private
Display version.

def run

def run
  puts RuboCop::Version.version(debug: false) if @options[:version]
  puts RuboCop::Version.version(debug: true, env: env) if @options[:verbose_version]
end