Sha256: 04cd8ac6df50878d7064f76da86bdb0e00e96513caf58fc7db4a4e8ce9d0908e
Contents?: true
Size: 433 Bytes
Versions: 8
Compression:
Stored size: 433 Bytes
Contents
# frozen_string_literal: true module RuboCop # This module holds the RuboCop version information. module Version STRING = '0.46.0'.freeze MSG = '%s (using Parser %s, running on %s %s %s)'.freeze module_function def version(debug = false) if debug format(MSG, STRING, Parser::VERSION, RUBY_ENGINE, RUBY_VERSION, RUBY_PLATFORM) else STRING end end end end
Version data entries
8 entries across 8 versions & 2 rubygems