Skip to content

Commit

Permalink
Update minimal ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
flash-gordon committed Jan 19, 2025
1 parent dd72dee commit 616faf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile.devtools
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ group :test do
gem "simplecov-cobertura", require: false, platforms: :ruby
gem "rexml", require: false

gem "warning" if RUBY_VERSION >= "2.4.0"
gem "warning"
end

group :tools do
# this is the same version that we use on codacy
gem "rubocop", "1.26.1"
gem "rubocop", "1.69.2"
end
7 changes: 4 additions & 3 deletions rom-yesql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1.0"

spec.add_runtime_dependency "rom", "~>5"
spec.add_runtime_dependency "dry-core", "~>1.0"
spec.add_runtime_dependency "sequel", "~>5"
spec.add_runtime_dependency "rom", "~> 5.4"
spec.add_runtime_dependency "dry-core", "~>1.1"
spec.add_runtime_dependency "sequel", "~> 5"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 10.0"
end

0 comments on commit 616faf1

Please sign in to comment.