cuke_modeler.gemspec in cuke_modeler-3.18.0 vs cuke_modeler.gemspec in cuke_modeler-3.19.0
- old
+ new
@@ -16,15 +16,16 @@
'be analyzed or manipulated more easily than the underlying AST layer.'].join
spec.homepage = 'https://github.com/enkessler/cuke_modeler'
spec.license = 'MIT'
spec.metadata = {
- 'bug_tracker_uri' => 'https://github.com/enkessler/cuke_modeler/issues',
- 'changelog_uri' => 'https://github.com/enkessler/cuke_modeler/blob/master/CHANGELOG.md',
- 'documentation_uri' => 'https://www.rubydoc.info/gems/cuke_modeler',
- 'homepage_uri' => 'https://github.com/enkessler/cuke_modeler',
- 'source_code_uri' => 'https://github.com/enkessler/cuke_modeler'
+ 'bug_tracker_uri' => 'https://github.com/enkessler/cuke_modeler/issues',
+ 'changelog_uri' => 'https://github.com/enkessler/cuke_modeler/blob/master/CHANGELOG.md',
+ 'documentation_uri' => 'https://www.rubydoc.info/gems/cuke_modeler',
+ 'homepage_uri' => 'https://github.com/enkessler/cuke_modeler',
+ 'source_code_uri' => 'https://github.com/enkessler/cuke_modeler',
+ 'rubygems_mfa_required' => 'true'
}
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('', __dir__)) do
@@ -34,22 +35,21 @@
end
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3', '< 4.0'
- spec.add_runtime_dependency 'cucumber-gherkin', '< 26.0'
+ spec.add_runtime_dependency 'cucumber-gherkin', '< 27.0'
spec.add_development_dependency 'bundler', '< 3.0'
spec.add_development_dependency 'childprocess', '< 5.0'
spec.add_development_dependency 'ffi', '< 2.0' # This is an invisible dependency for the `childprocess` gem on Windows
# Cucumber 4.x is the earliest version to use cucumber-gherkin
spec.add_development_dependency 'cucumber', '>= 4.0.0', '< 8.0.0'
spec.add_development_dependency 'rainbow', '< 4.0.0'
spec.add_development_dependency 'rake', '< 14.0.0'
spec.add_development_dependency 'rspec', '~> 3.0'
- # RuboCop drops Ruby 2.3 support after this version and we need to maintain Ruby 2.3 compatibility when writing code
- # for this gem
- spec.add_development_dependency 'rubocop', '< 0.82.0'
+ # Running recent RuboCop versions requires a recent version of Ruby but it can still lint against Ruby 2.3 styles
+ spec.add_development_dependency 'rubocop', '< 2.0'
spec.add_development_dependency 'simplecov', '< 1.0'
spec.add_development_dependency 'simplecov-lcov', '< 1.0'
spec.add_development_dependency 'test-unit', '< 4.0.0'
spec.add_development_dependency 'yard', '< 1.0'
end