Sha256: 4ce99a429a4dda20053d1af4fbf4df1ce594818e606f069baf9db213af3b9e2b
Contents?: true
Size: 368 Bytes
Versions: 24
Compression:
Stored size: 368 Bytes
Contents
# frozen_string_literal: true module RuboCop class CLI module Command # Display version. class Version < Base self.command_name = :version def run puts RuboCop::Version.version(false) if @options[:version] puts RuboCop::Version.version(true) if @options[:verbose_version] end end end end end
Version data entries
24 entries across 23 versions & 5 rubygems