Sha256: e8db87908a5dd6e445b65b4cbb71336ceaa9c389c03868f3ea414074303db141
Contents?: true
Size: 413 Bytes
Versions: 248
Compression:
Stored size: 413 Bytes
Contents
# frozen_string_literal: true module RuboCop class CLI module Command # Display version. # @api private class Version < Base self.command_name = :version def run puts RuboCop::Version.version(debug: false) if @options[:version] puts RuboCop::Version.version(debug: true, env: env) if @options[:verbose_version] end end end end end
Version data entries
248 entries across 239 versions & 23 rubygems