rubocop-lts-ruby 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +119 -0
- data/LICENSE.md +10 -0
- data/README.md +533 -0
- data/Rakefile +188 -0
- data/config/base.yml +12 -0
- data/lib/rubocop/lts/ruby/catalog.rb +383 -0
- data/lib/rubocop/lts/ruby/cop/lint_lts_ruby/unavailable_method.rb +71 -0
- data/lib/rubocop/lts/ruby/plugin.rb +35 -0
- data/lib/rubocop/lts/ruby/version.rb +15 -0
- data/lib/rubocop/lts/ruby.rb +11 -0
- data/lib/rubocop-lts-ruby.rb +9 -0
- data/rubocop-lts-ruby.gemspec +151 -0
- data/sig/rubocop/lts/ruby.rbs +10 -0
- data.tar.gz.sig +0 -0
- metadata +360 -0
- metadata.gz.sig +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "lint_roller"
|
|
4
|
+
require "pathname"
|
|
5
|
+
require_relative "version"
|
|
6
|
+
|
|
7
|
+
module RuboCop
|
|
8
|
+
module Lts
|
|
9
|
+
module Ruby
|
|
10
|
+
# LintRoller adapter that supplies this gem's API-gating rules.
|
|
11
|
+
class Plugin < LintRoller::Plugin
|
|
12
|
+
def about
|
|
13
|
+
LintRoller::About.new(
|
|
14
|
+
name: "rubocop-lts-ruby",
|
|
15
|
+
version: VERSION,
|
|
16
|
+
homepage: "https://github.com/rubocop-lts/rubocop-lts-ruby",
|
|
17
|
+
description: "RuboCop cops that gate Ruby core and standard library APIs by target Ruby version."
|
|
18
|
+
)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def supported?(context)
|
|
22
|
+
context.engine == :rubocop
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def rules(context)
|
|
26
|
+
LintRoller::Rules.new(
|
|
27
|
+
type: :path,
|
|
28
|
+
config_format: :rubocop,
|
|
29
|
+
value: Pathname.new(__dir__).join("../../../../config/base.yml")
|
|
30
|
+
)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RuboCop
|
|
4
|
+
module Lts
|
|
5
|
+
module Ruby
|
|
6
|
+
# Version namespace for this gem.
|
|
7
|
+
module Version
|
|
8
|
+
# Current gem version.
|
|
9
|
+
VERSION = "0.1.0"
|
|
10
|
+
end
|
|
11
|
+
# Current gem version exposed at the traditional constant location.
|
|
12
|
+
VERSION = Version::VERSION # Traditional Constant Location
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# kettle-jem:freeze
|
|
4
|
+
# To retain chunks of comments & code during kettle-jem templating:
|
|
5
|
+
# Wrap custom sections with freeze markers (e.g., as above and below this comment chunk).
|
|
6
|
+
# kettle-jem will then preserve content between those markers across template runs.
|
|
7
|
+
# kettle-jem:unfreeze
|
|
8
|
+
|
|
9
|
+
Gem::Specification.new do |spec|
|
|
10
|
+
spec.name = "rubocop-lts-ruby"
|
|
11
|
+
spec.version = Module.new.tap { |mod| Kernel.load("#{__dir__}/lib/rubocop/lts/ruby/version.rb", mod) }::RuboCop::Lts::Ruby::Version::VERSION
|
|
12
|
+
spec.authors = ["Peter H. Boling"]
|
|
13
|
+
spec.email = ["floss@galtzo.com"]
|
|
14
|
+
|
|
15
|
+
spec.summary = "🛡️ Std Lib Gating Cops-per-each Version of Ruby"
|
|
16
|
+
spec.description = <<~DESCRIPTION
|
|
17
|
+
RuboCop cops that detect use of Ruby core and standard library APIs that are
|
|
18
|
+
unavailable for the configured TargetRubyVersion.
|
|
19
|
+
DESCRIPTION
|
|
20
|
+
spec.homepage = "https://github.com/rubocop-lts/rubocop-lts-ruby"
|
|
21
|
+
spec.licenses = ["MIT"]
|
|
22
|
+
spec.required_ruby_version = ">= 3.2.0"
|
|
23
|
+
|
|
24
|
+
# Linux distros often package gems and securely certify them independent
|
|
25
|
+
# of the official RubyGem certification process. Allowed via ENV["SKIP_GEM_SIGNING"]
|
|
26
|
+
# Ref: https://gitlab.com/ruby-oauth/version_gem/-/issues/3
|
|
27
|
+
# Hence, only enable signing if `SKIP_GEM_SIGNING` is not set in ENV.
|
|
28
|
+
# See CONTRIBUTING.md
|
|
29
|
+
unless ENV.include?("SKIP_GEM_SIGNING")
|
|
30
|
+
user_cert = "certs/#{ENV.fetch("GEM_CERT_USER", ENV["USER"])}.pem"
|
|
31
|
+
cert_file_path = File.join(__dir__, user_cert)
|
|
32
|
+
cert_chain = cert_file_path.split(",")
|
|
33
|
+
cert_chain.select! { |fp| File.exist?(fp) }
|
|
34
|
+
if cert_file_path && cert_chain.any?
|
|
35
|
+
spec.cert_chain = cert_chain
|
|
36
|
+
if $PROGRAM_NAME.end_with?("gem") && ARGV[0] == "build"
|
|
37
|
+
spec.signing_key = File.join(Gem.user_home, ".ssh", "gem-private_key.pem")
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
spec.metadata["homepage_uri"] = "https://github.com/rubocop-lts/rubocop-lts-ruby"
|
|
43
|
+
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/v#{spec.version}"
|
|
44
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md"
|
|
45
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
|
46
|
+
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/#{spec.name}/#{spec.version}"
|
|
47
|
+
spec.metadata["funding_uri"] = "https://github.com/sponsors/pboling"
|
|
48
|
+
spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
|
|
49
|
+
spec.metadata["news_uri"] = "https://www.railsbling.com/tags/#{spec.name}"
|
|
50
|
+
spec.metadata["discord_uri"] = "https://discord.gg/3qme4XHNKN"
|
|
51
|
+
spec.metadata["mailing_list_uri"] = "https://www.rubyforum.org/tag/rubocop-lts"
|
|
52
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
53
|
+
spec.metadata["default_lint_roller_plugin"] = "RuboCop::Lts::Ruby::Plugin"
|
|
54
|
+
|
|
55
|
+
gemspec_root = __dir__
|
|
56
|
+
relative_package_path = lambda do |path|
|
|
57
|
+
path.delete_prefix("#{gemspec_root}/")
|
|
58
|
+
end
|
|
59
|
+
enumerate_package_glob = lambda do |glob|
|
|
60
|
+
Dir.glob(glob, File::FNM_DOTMATCH).filter_map do |path|
|
|
61
|
+
next unless File.file?(path) && ![".", ".."].include?(File.basename(path))
|
|
62
|
+
|
|
63
|
+
relative_package_path.call(path)
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
enumerate_package_files = lambda do |root|
|
|
67
|
+
enumerate_package_glob.call(File.join(gemspec_root, root, "**", "*"))
|
|
68
|
+
end
|
|
69
|
+
package_metadata_files = %w[
|
|
70
|
+
CHANGELOG.md
|
|
71
|
+
LICENSE.md
|
|
72
|
+
README.md
|
|
73
|
+
sig/rubocop/lts/ruby.rbs
|
|
74
|
+
].select { |path| File.exist?(File.join(gemspec_root, path)) }
|
|
75
|
+
|
|
76
|
+
# Specify which files are part of the released package.
|
|
77
|
+
spec.files = [
|
|
78
|
+
# Root package metadata
|
|
79
|
+
*package_metadata_files,
|
|
80
|
+
# Code / tasks / data (NOTE: exe/ is specified via spec.bindir and spec.executables below)
|
|
81
|
+
*enumerate_package_files.call("lib"),
|
|
82
|
+
# Executables and executable support scripts
|
|
83
|
+
*enumerate_package_files.call("exe"),
|
|
84
|
+
*enumerate_package_glob.call(File.join(gemspec_root, "Rakefile")),
|
|
85
|
+
*enumerate_package_glob.call(File.join(gemspec_root, "config/**/*.yml")),
|
|
86
|
+
*enumerate_package_glob.call(File.join(gemspec_root, "rubocop-lts-ruby.gemspec"))
|
|
87
|
+
]
|
|
88
|
+
spec.rdoc_options += [
|
|
89
|
+
"--title",
|
|
90
|
+
"#{spec.name} - #{spec.summary}",
|
|
91
|
+
"--main",
|
|
92
|
+
"README.md",
|
|
93
|
+
"--exclude",
|
|
94
|
+
"^sig/",
|
|
95
|
+
"--line-numbers",
|
|
96
|
+
"--inline-source",
|
|
97
|
+
"--quiet"
|
|
98
|
+
]
|
|
99
|
+
spec.bindir = "exe"
|
|
100
|
+
# Listed files are the relative paths from bindir above.
|
|
101
|
+
spec.executables = []
|
|
102
|
+
spec.require_paths = ["lib"]
|
|
103
|
+
|
|
104
|
+
# Utilities
|
|
105
|
+
spec.add_dependency "lint_roller", "~> 1.1"
|
|
106
|
+
spec.add_dependency "rubocop", ">= 1.72.1", "< 2.0"
|
|
107
|
+
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.15") # ruby >= 2.2.0
|
|
108
|
+
|
|
109
|
+
# NOTE: It is preferable to list development dependencies in the gemspec due to increased
|
|
110
|
+
# visibility and discoverability.
|
|
111
|
+
# However, development dependencies in gemspec will install on
|
|
112
|
+
# all versions of Ruby that will run in CI.
|
|
113
|
+
# This gem, and its gemspec runtime dependencies, will install on Ruby down to 3.2.0.
|
|
114
|
+
# This gem, and its gemspec development dependencies, will install on Ruby down to 3.2.0.
|
|
115
|
+
# Thus, dev dependencies in gemspec must have
|
|
116
|
+
#
|
|
117
|
+
# required_ruby_version ">= 3.2.0" (or lower)
|
|
118
|
+
#
|
|
119
|
+
# Development dependencies that require strictly newer Ruby versions should be in a "gemfile",
|
|
120
|
+
# and preferably a modular one (see gemfiles/modular/*.gemfile).
|
|
121
|
+
|
|
122
|
+
# Dev, Test, & Release Tasks
|
|
123
|
+
spec.add_development_dependency("kettle-dev", "~> 2.5", ">= 2.5.26") # ruby >= 3.2.0
|
|
124
|
+
|
|
125
|
+
# Security
|
|
126
|
+
spec.add_development_dependency("bundler-audit", "~> 0.9.3") # ruby >= 2.0.0
|
|
127
|
+
|
|
128
|
+
# Tasks
|
|
129
|
+
spec.add_development_dependency("rake", "~> 13.0") # ruby >= 2.2.0
|
|
130
|
+
|
|
131
|
+
# Debugging
|
|
132
|
+
spec.add_development_dependency("require_bench", "~> 1.0", ">= 1.0.4") # ruby >= 2.2.0
|
|
133
|
+
|
|
134
|
+
# Testing
|
|
135
|
+
# Loads version files in anonymous namespaces for coverage without constant redefinition warnings.
|
|
136
|
+
spec.add_development_dependency("anonymous_loader", "~> 0.1", ">= 0.1.3") # ruby >= 2.2.0
|
|
137
|
+
spec.add_development_dependency("appraisal2", "~> 3.2", ">= 3.2.2") # ruby >= 1.8.7, for testing against multiple versions of dependencies
|
|
138
|
+
spec.add_development_dependency("kettle-test", "~> 2.0", ">= 2.0.19") # ruby >= 3.2.0
|
|
139
|
+
spec.add_development_dependency("turbo_tests2", "~> 3.2", ">= 3.2.5") # ruby >= 2.4.0, default kettle-test runner
|
|
140
|
+
|
|
141
|
+
# Releasing
|
|
142
|
+
spec.add_development_dependency("ruby-progressbar", "~> 1.13") # ruby >= 0
|
|
143
|
+
spec.add_development_dependency("stone_checksums", "~> 1.0", ">= 1.0.8") # ruby >= 2.2.0
|
|
144
|
+
|
|
145
|
+
# Development tasks
|
|
146
|
+
# The cake is a lie. erb v2.2, the oldest release, was never compatible with Ruby 2.3.
|
|
147
|
+
# This means we have no choice but to use the erb that shipped with Ruby 2.3
|
|
148
|
+
# /opt/hostedtoolcache/Ruby/2.3.8/x64/lib/ruby/gems/2.3.0/gems/erb-2.2.2/lib/erb.rb:670:in `prepare_trim_mode': undefined method `match?' for "-":String (NoMethodError)
|
|
149
|
+
# spec.add_development_dependency("erb", ">= 2.2") # ruby >= 2.3.0, not SemVer, old rubies get dropped in a patch.
|
|
150
|
+
spec.add_development_dependency("gitmoji-regex", "~> 2.0", ">= 2.0.11") # ruby >= 2.4
|
|
151
|
+
end
|
data.tar.gz.sig
ADDED
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rubocop-lts-ruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Peter H. Boling
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain:
|
|
10
|
+
- |
|
|
11
|
+
-----BEGIN CERTIFICATE-----
|
|
12
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
13
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
14
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
15
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
16
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
17
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
18
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
19
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
20
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
21
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
22
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
23
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
24
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
25
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
26
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
27
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
28
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
29
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
30
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
31
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
32
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
33
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
34
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
35
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
36
|
+
L9nRqA==
|
|
37
|
+
-----END CERTIFICATE-----
|
|
38
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
39
|
+
dependencies:
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: lint_roller
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.1'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1.1'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: rubocop
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 1.72.1
|
|
61
|
+
- - "<"
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '2.0'
|
|
64
|
+
type: :runtime
|
|
65
|
+
prerelease: false
|
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
67
|
+
requirements:
|
|
68
|
+
- - ">="
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
version: 1.72.1
|
|
71
|
+
- - "<"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '2.0'
|
|
74
|
+
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: version_gem
|
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - "~>"
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '1.1'
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: 1.1.15
|
|
84
|
+
type: :runtime
|
|
85
|
+
prerelease: false
|
|
86
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - "~>"
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '1.1'
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: 1.1.15
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: kettle-dev
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - "~>"
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '2.5'
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 2.5.26
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '2.5'
|
|
111
|
+
- - ">="
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: 2.5.26
|
|
114
|
+
- !ruby/object:Gem::Dependency
|
|
115
|
+
name: bundler-audit
|
|
116
|
+
requirement: !ruby/object:Gem::Requirement
|
|
117
|
+
requirements:
|
|
118
|
+
- - "~>"
|
|
119
|
+
- !ruby/object:Gem::Version
|
|
120
|
+
version: 0.9.3
|
|
121
|
+
type: :development
|
|
122
|
+
prerelease: false
|
|
123
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
124
|
+
requirements:
|
|
125
|
+
- - "~>"
|
|
126
|
+
- !ruby/object:Gem::Version
|
|
127
|
+
version: 0.9.3
|
|
128
|
+
- !ruby/object:Gem::Dependency
|
|
129
|
+
name: rake
|
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
|
131
|
+
requirements:
|
|
132
|
+
- - "~>"
|
|
133
|
+
- !ruby/object:Gem::Version
|
|
134
|
+
version: '13.0'
|
|
135
|
+
type: :development
|
|
136
|
+
prerelease: false
|
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
138
|
+
requirements:
|
|
139
|
+
- - "~>"
|
|
140
|
+
- !ruby/object:Gem::Version
|
|
141
|
+
version: '13.0'
|
|
142
|
+
- !ruby/object:Gem::Dependency
|
|
143
|
+
name: require_bench
|
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
|
145
|
+
requirements:
|
|
146
|
+
- - "~>"
|
|
147
|
+
- !ruby/object:Gem::Version
|
|
148
|
+
version: '1.0'
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: 1.0.4
|
|
152
|
+
type: :development
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '1.0'
|
|
159
|
+
- - ">="
|
|
160
|
+
- !ruby/object:Gem::Version
|
|
161
|
+
version: 1.0.4
|
|
162
|
+
- !ruby/object:Gem::Dependency
|
|
163
|
+
name: anonymous_loader
|
|
164
|
+
requirement: !ruby/object:Gem::Requirement
|
|
165
|
+
requirements:
|
|
166
|
+
- - "~>"
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: '0.1'
|
|
169
|
+
- - ">="
|
|
170
|
+
- !ruby/object:Gem::Version
|
|
171
|
+
version: 0.1.3
|
|
172
|
+
type: :development
|
|
173
|
+
prerelease: false
|
|
174
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
175
|
+
requirements:
|
|
176
|
+
- - "~>"
|
|
177
|
+
- !ruby/object:Gem::Version
|
|
178
|
+
version: '0.1'
|
|
179
|
+
- - ">="
|
|
180
|
+
- !ruby/object:Gem::Version
|
|
181
|
+
version: 0.1.3
|
|
182
|
+
- !ruby/object:Gem::Dependency
|
|
183
|
+
name: appraisal2
|
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
|
185
|
+
requirements:
|
|
186
|
+
- - "~>"
|
|
187
|
+
- !ruby/object:Gem::Version
|
|
188
|
+
version: '3.2'
|
|
189
|
+
- - ">="
|
|
190
|
+
- !ruby/object:Gem::Version
|
|
191
|
+
version: 3.2.2
|
|
192
|
+
type: :development
|
|
193
|
+
prerelease: false
|
|
194
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
195
|
+
requirements:
|
|
196
|
+
- - "~>"
|
|
197
|
+
- !ruby/object:Gem::Version
|
|
198
|
+
version: '3.2'
|
|
199
|
+
- - ">="
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: 3.2.2
|
|
202
|
+
- !ruby/object:Gem::Dependency
|
|
203
|
+
name: kettle-test
|
|
204
|
+
requirement: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - "~>"
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '2.0'
|
|
209
|
+
- - ">="
|
|
210
|
+
- !ruby/object:Gem::Version
|
|
211
|
+
version: 2.0.19
|
|
212
|
+
type: :development
|
|
213
|
+
prerelease: false
|
|
214
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
215
|
+
requirements:
|
|
216
|
+
- - "~>"
|
|
217
|
+
- !ruby/object:Gem::Version
|
|
218
|
+
version: '2.0'
|
|
219
|
+
- - ">="
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: 2.0.19
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: turbo_tests2
|
|
224
|
+
requirement: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - "~>"
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: '3.2'
|
|
229
|
+
- - ">="
|
|
230
|
+
- !ruby/object:Gem::Version
|
|
231
|
+
version: 3.2.5
|
|
232
|
+
type: :development
|
|
233
|
+
prerelease: false
|
|
234
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
235
|
+
requirements:
|
|
236
|
+
- - "~>"
|
|
237
|
+
- !ruby/object:Gem::Version
|
|
238
|
+
version: '3.2'
|
|
239
|
+
- - ">="
|
|
240
|
+
- !ruby/object:Gem::Version
|
|
241
|
+
version: 3.2.5
|
|
242
|
+
- !ruby/object:Gem::Dependency
|
|
243
|
+
name: ruby-progressbar
|
|
244
|
+
requirement: !ruby/object:Gem::Requirement
|
|
245
|
+
requirements:
|
|
246
|
+
- - "~>"
|
|
247
|
+
- !ruby/object:Gem::Version
|
|
248
|
+
version: '1.13'
|
|
249
|
+
type: :development
|
|
250
|
+
prerelease: false
|
|
251
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
252
|
+
requirements:
|
|
253
|
+
- - "~>"
|
|
254
|
+
- !ruby/object:Gem::Version
|
|
255
|
+
version: '1.13'
|
|
256
|
+
- !ruby/object:Gem::Dependency
|
|
257
|
+
name: stone_checksums
|
|
258
|
+
requirement: !ruby/object:Gem::Requirement
|
|
259
|
+
requirements:
|
|
260
|
+
- - "~>"
|
|
261
|
+
- !ruby/object:Gem::Version
|
|
262
|
+
version: '1.0'
|
|
263
|
+
- - ">="
|
|
264
|
+
- !ruby/object:Gem::Version
|
|
265
|
+
version: 1.0.8
|
|
266
|
+
type: :development
|
|
267
|
+
prerelease: false
|
|
268
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
269
|
+
requirements:
|
|
270
|
+
- - "~>"
|
|
271
|
+
- !ruby/object:Gem::Version
|
|
272
|
+
version: '1.0'
|
|
273
|
+
- - ">="
|
|
274
|
+
- !ruby/object:Gem::Version
|
|
275
|
+
version: 1.0.8
|
|
276
|
+
- !ruby/object:Gem::Dependency
|
|
277
|
+
name: gitmoji-regex
|
|
278
|
+
requirement: !ruby/object:Gem::Requirement
|
|
279
|
+
requirements:
|
|
280
|
+
- - "~>"
|
|
281
|
+
- !ruby/object:Gem::Version
|
|
282
|
+
version: '2.0'
|
|
283
|
+
- - ">="
|
|
284
|
+
- !ruby/object:Gem::Version
|
|
285
|
+
version: 2.0.11
|
|
286
|
+
type: :development
|
|
287
|
+
prerelease: false
|
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
289
|
+
requirements:
|
|
290
|
+
- - "~>"
|
|
291
|
+
- !ruby/object:Gem::Version
|
|
292
|
+
version: '2.0'
|
|
293
|
+
- - ">="
|
|
294
|
+
- !ruby/object:Gem::Version
|
|
295
|
+
version: 2.0.11
|
|
296
|
+
description: |
|
|
297
|
+
RuboCop cops that detect use of Ruby core and standard library APIs that are
|
|
298
|
+
unavailable for the configured TargetRubyVersion.
|
|
299
|
+
email:
|
|
300
|
+
- floss@galtzo.com
|
|
301
|
+
executables: []
|
|
302
|
+
extensions: []
|
|
303
|
+
extra_rdoc_files: []
|
|
304
|
+
files:
|
|
305
|
+
- CHANGELOG.md
|
|
306
|
+
- LICENSE.md
|
|
307
|
+
- README.md
|
|
308
|
+
- Rakefile
|
|
309
|
+
- config/base.yml
|
|
310
|
+
- lib/rubocop-lts-ruby.rb
|
|
311
|
+
- lib/rubocop/lts/ruby.rb
|
|
312
|
+
- lib/rubocop/lts/ruby/catalog.rb
|
|
313
|
+
- lib/rubocop/lts/ruby/cop/lint_lts_ruby/unavailable_method.rb
|
|
314
|
+
- lib/rubocop/lts/ruby/plugin.rb
|
|
315
|
+
- lib/rubocop/lts/ruby/version.rb
|
|
316
|
+
- rubocop-lts-ruby.gemspec
|
|
317
|
+
- sig/rubocop/lts/ruby.rbs
|
|
318
|
+
homepage: https://github.com/rubocop-lts/rubocop-lts-ruby
|
|
319
|
+
licenses:
|
|
320
|
+
- MIT
|
|
321
|
+
metadata:
|
|
322
|
+
homepage_uri: https://github.com/rubocop-lts/rubocop-lts-ruby
|
|
323
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-lts-ruby/tree/v0.1.0
|
|
324
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-lts-ruby/blob/v0.1.0/CHANGELOG.md
|
|
325
|
+
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts-ruby/issues
|
|
326
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts-ruby/0.1.0
|
|
327
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
328
|
+
wiki_uri: https://github.com/rubocop-lts/rubocop-lts-ruby/wiki
|
|
329
|
+
news_uri: https://www.railsbling.com/tags/rubocop-lts-ruby
|
|
330
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
331
|
+
mailing_list_uri: https://www.rubyforum.org/tag/rubocop-lts
|
|
332
|
+
rubygems_mfa_required: 'true'
|
|
333
|
+
default_lint_roller_plugin: RuboCop::Lts::Ruby::Plugin
|
|
334
|
+
rdoc_options:
|
|
335
|
+
- "--title"
|
|
336
|
+
- "rubocop-lts-ruby - \U0001F6E1️ Std Lib Gating Cops-per-each Version of Ruby"
|
|
337
|
+
- "--main"
|
|
338
|
+
- README.md
|
|
339
|
+
- "--exclude"
|
|
340
|
+
- "^sig/"
|
|
341
|
+
- "--line-numbers"
|
|
342
|
+
- "--inline-source"
|
|
343
|
+
- "--quiet"
|
|
344
|
+
require_paths:
|
|
345
|
+
- lib
|
|
346
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
347
|
+
requirements:
|
|
348
|
+
- - ">="
|
|
349
|
+
- !ruby/object:Gem::Version
|
|
350
|
+
version: 3.2.0
|
|
351
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
352
|
+
requirements:
|
|
353
|
+
- - ">="
|
|
354
|
+
- !ruby/object:Gem::Version
|
|
355
|
+
version: '0'
|
|
356
|
+
requirements: []
|
|
357
|
+
rubygems_version: 4.0.17
|
|
358
|
+
specification_version: 4
|
|
359
|
+
summary: "\U0001F6E1️ Std Lib Gating Cops-per-each Version of Ruby"
|
|
360
|
+
test_files: []
|
metadata.gz.sig
ADDED
|
Binary file
|