Sha256: 2fb859d482be02b2610a1143a78c292a76ae3b9eea6ebad3cfc3cd16870759c3
Contents?: true
Size: 718 Bytes
Versions: 7
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true module RuboCop # This module holds the RuboCop version information. module Version STRING = '0.91.1' MSG = '%<version>s (using Parser %<parser_version>s, '\ 'rubocop-ast %<rubocop_ast_version>s, ' \ 'running on %<ruby_engine>s %<ruby_version>s %<ruby_platform>s)' # @api private def self.version(debug: false) if debug format(MSG, version: STRING, parser_version: Parser::VERSION, rubocop_ast_version: RuboCop::AST::Version::STRING, ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION, ruby_platform: RUBY_PLATFORM) else STRING end end end end
Version data entries
7 entries across 7 versions & 2 rubygems