Sha256: 63adbe5cb1054f70be15fac4d260802024b71487b9c513d44e7ebe3f0c080fb9
Contents?: true
Size: 403 Bytes
Versions: 13
Compression:
Stored size: 403 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) if @options[:verbose_version] end end end end end
Version data entries
13 entries across 13 versions & 3 rubygems