Skip to content

Commit

Permalink
Update aws-sdk development dependency
Browse files Browse the repository at this point in the history
Paperclip 5 no longer supports aws-sdk v1. Having a lot of constraints
in one gem dependency caused issues when pushing the gem (ref:
rubygems/rubygems#1564).

This commit simplifies the dependency restriction to `>= 2.0.33`.
  • Loading branch information
kitop committed Mar 23, 2016
1 parent 7a973cc commit 1fa1df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paperclip.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |s|
s.add_development_dependency('rspec', '~> 3.0')
s.add_development_dependency('appraisal')
s.add_development_dependency('mocha')
s.add_development_dependency('aws-sdk', '>= 1.5.7', "< 3.0", *((0..33).to_a.collect{ |release_number| "!= 2.0.#{release_number}" }))
s.add_development_dependency('aws-sdk', '>= 2.0.33', '< 3.0')
s.add_development_dependency('bourne')
s.add_development_dependency('cucumber', '~> 1.3.18')
s.add_development_dependency('aruba', '~> 0.9.0')
Expand Down

0 comments on commit 1fa1df9

Please sign in to comment.