Sha256: c86cb74388c8e75b563b52b526608212d00c55e1d474eb82d2aaae86d8834de3

Contents?: true

Size: 353 Bytes

Versions: 1

Compression:

Stored size: 353 Bytes

Contents

module RuboCop
  module Select
    VERSION = '2.0.0'

    MSG = '%s (using RuboCop %s, running on %s %s %s)'

    module_function

    def version(debug = false)
      if debug
        format(MSG, VERSION, ::RuboCop::Version.version(false),
               RUBY_ENGINE, RUBY_VERSION, RUBY_PLATFORM)
      else
        VERSION
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-select-2.0.0 lib/rubocop/select/version.rb