Skip to content

Commit

Permalink
Rollback backwards incompatible change
Browse files Browse the repository at this point in the history
We upgraded the minimum required Ruby version to not include end-of-life
Rubies, but forgot to take into account that it's a backwards
incompatible change.

In this commit we rollback that change, allowing paperclip ~> 4.2.4 to
run on 1.9.2 again.

[fixes thoughtbot#1902]
  • Loading branch information
tute committed Jun 18, 2015
1 parent 1522218 commit 19f97f0
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 @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

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

s.add_dependency('activemodel', '>= 3.2.0')
s.add_dependency('activesupport', '>= 3.2.0')
Expand Down

0 comments on commit 19f97f0

Please sign in to comment.