Skip to content

Commit b1cebf6

Browse files
committed
Project: Remove spec.required_ruby_version
It might prevent Dependabot from working properly. Because rubocop >= 1.51.0 depends on Ruby >= 2.7.0 and Gemfile depends on rubocop = 1.84.1, Ruby >= 2.7.0 is required. So, because current Ruby version is = 2.5.9, version solving has failed. -- https://github.com/crate/crate_ruby/network/updates/1239572576 The README also says "You will need Ruby 2.0 or greater."
1 parent 6101ef9 commit b1cebf6

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.rubocop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ require: rubocop-rspec
44

55
AllCops:
66
NewCops: enable
7-
TargetRubyVersion: 2.5
7+
8+
Gemspec/RequiredRubyVersion:
9+
Enabled: false

crate_ruby.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ Gem::Specification.new do |spec|
3333
spec.description = 'A Ruby library for the CrateDB HTTP interface with query support, DDL command and schema introspection shortcuts, and support for BLOB tables.'
3434
spec.homepage = 'https://crate.io'
3535
spec.license = 'Apache-2.0'
36-
spec.required_ruby_version = '>= 2.5'
3736

3837
spec.files = Dir['lib/**/*']
3938
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)