Skip to content

Commit

Permalink
Need to lock down sinatra and activesupport
Browse files Browse the repository at this point in the history
Newer version of sinatra (2+) depend on rack 2+ which requires Ruby version >= 2.2.2
breaking the travis build on older versions of ruby
See https://travis-ci.org/iain/fake_sqs/jobs/156489863

Activesupport 5+ requires Ruby version >= 2.2.2
See https://travis-ci.org/iain/fake_sqs/jobs/156491614
  • Loading branch information
nritholtz committed Aug 31, 2016
1 parent 7b3ccd7 commit efd72e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fake_sqs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.license = "MIT"

gem.add_dependency "sinatra"
gem.add_dependency "sinatra", "~> 1"
gem.add_dependency "builder"

gem.add_development_dependency "rspec"
Expand All @@ -27,6 +27,6 @@ Gem::Specification.new do |gem|
gem.add_development_dependency "faraday"
gem.add_development_dependency "thin"
gem.add_development_dependency "verbose_hash_fetch"
gem.add_development_dependency "activesupport"
gem.add_development_dependency "activesupport", "< 5"

end

0 comments on commit efd72e2

Please sign in to comment.