Sha256: dd92d77fd3af59556facb9805244eb75a15ad9a0b2953d4b98c5cfb3105d4a82
Contents?: true
Size: 591 Bytes
Versions: 5
Compression:
Stored size: 591 Bytes
Contents
# frozen_string_literal: true module RuboCop # This module holds the RuboCop version information. module Version STRING = '0.60.0'.freeze MSG = '%<version>s (using Parser %<parser_version>s, running on ' \ '%<ruby_engine>s %<ruby_version>s %<ruby_platform>s)'.freeze def self.version(debug = false) if debug format(MSG, version: STRING, parser_version: Parser::VERSION, ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION, ruby_platform: RUBY_PLATFORM) else STRING end end end end
Version data entries
5 entries across 3 versions & 2 rubygems