From 19f97f07a236f9460f94e23c87aaeadd62ad4621 Mon Sep 17 00:00:00 2001 From: Tute Costa Date: Wed, 17 Jun 2015 23:29:09 -0500 Subject: [PATCH] Rollback backwards incompatible change 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 #1902] --- paperclip.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paperclip.gemspec b/paperclip.gemspec index 54d79938b..44458b2fb 100644 --- a/paperclip.gemspec +++ b/paperclip.gemspec @@ -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')