Skip to content

Commit

Permalink
Fix for failing travis
Browse files Browse the repository at this point in the history
  • Loading branch information
trekdemo committed Jul 12, 2016
1 parent 127cf5a commit 38ec1ac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apivore.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'rspec', '~> 3'
s.add_runtime_dependency 'rspec-expectations', '~> 3.1'
s.add_runtime_dependency 'rspec-mocks', '~> 3.1'
s.add_runtime_dependency 'actionpack', '>= 4', '< 6'
if RUBY_VERSION >= '2.2.0'
s.add_runtime_dependency 'actionpack', '>= 4', '< 6'
else
s.add_runtime_dependency 'actionpack', '< 5'
end
s.add_runtime_dependency 'hashie', '~> 3.3'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'rake', '~> 10.3'
Expand Down

0 comments on commit 38ec1ac

Please sign in to comment.