Skip to content

Commit

Permalink
Relax dependencies for Rails master compatibility
Browse files Browse the repository at this point in the history
Rails 6.0 was recently released, and the version on the master branch is
now 6.1.0.alpha. The upper bound on these dependencies currently
prevents applications using this gem from running against Rails master.
  • Loading branch information
eugeneius committed Sep 1, 2019
1 parent 456c152 commit cf67346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db-query-matchers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Gem::Specification.new do |spec|
spec.files = Dir['lib/**/*.rb']
spec.require_paths = ['lib']

spec.add_runtime_dependency 'activesupport', '>= 4.0', "<= 6.0"
spec.add_runtime_dependency 'activesupport', '>= 4.0', "< 6.1"
spec.add_runtime_dependency 'rspec', '~> 3.0'

spec.add_development_dependency 'activerecord', '>= 4.0', "<= 6.0"
spec.add_development_dependency 'activerecord', '>= 4.0', "< 6.1"
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency "appraisal", "~> 2.0"

Expand Down

0 comments on commit cf67346

Please sign in to comment.