Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
Gem dependency fixes
Browse files Browse the repository at this point in the history
A number of people were reporting that there were issues with the gem
dependency specifications changes we made recently. This will revert
them.
  • Loading branch information
Jon Yurek committed Jun 12, 2015
1 parent 2e540f8 commit a5f4dd8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions paperclip.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.requirements << "ImageMagick"
s.required_ruby_version = ">= 1.9.2"
s.required_ruby_version = ">= 2.0.0"

s.add_dependency('activemodel', '>= 3.0.0')
s.add_dependency('activesupport', '>= 3.0.0')
s.add_dependency('cocaine', '~> 0.5.3')
s.add_dependency('activemodel', '>= 3.2.0')
s.add_dependency('activesupport', '>= 3.2.0')
s.add_dependency('cocaine', '~> 0.5.5')
s.add_dependency('mime-types')

s.add_development_dependency('activerecord', '>= 3.0.0')
s.add_development_dependency('activerecord', '>= 3.2.0')
s.add_development_dependency('shoulda')
s.add_development_dependency('rspec')
s.add_development_dependency('appraisal')
Expand All @@ -45,7 +45,7 @@ Gem::Specification.new do |s|
s.add_development_dependency('rake')
s.add_development_dependency('fakeweb')
s.add_development_dependency('railties')
s.add_development_dependency('actionmailer', '>= 3.0.0')
s.add_development_dependency('actionmailer', '>= 3.2.0')
s.add_development_dependency('generator_spec')
s.add_development_dependency('timecop')
end

0 comments on commit a5f4dd8

Please sign in to comment.