Sha256: a9c95767c2cf9eb466b70fb044da20bbc63f65d4e060b6e16706daf1a3271d75
Contents?: true
Size: 665 Bytes
Versions: 15
Compression:
Stored size: 665 Bytes
Contents
class Standard::CreatesConfigStore class SetsTargetRubyVersion def call(options_config, standard_config) options_config["AllCops"]["TargetRubyVersion"] = floatify_version( max_rubocop_supported_version(standard_config[:ruby_version]) ) end private def max_rubocop_supported_version(desired_version) rubocop_supported_version = Gem::Version.new("2.5") if desired_version < rubocop_supported_version rubocop_supported_version else desired_version end end def floatify_version(version) major, minor = version.segments "#{major}.#{minor}".to_f # lol end end end
Version data entries
15 entries across 15 versions & 2 rubygems