From afd832e6a1d073cc33bd835070bd640b21bf4b30 Mon Sep 17 00:00:00 2001 From: Ryan Mohr Date: Fri, 16 May 2014 13:21:32 -1000 Subject: [PATCH] Limit activesupport < 4.1 for ruby 1.9.3+ --- html-pipeline.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html-pipeline.gemspec b/html-pipeline.gemspec index 9737aa6f..dd625aad 100644 --- a/html-pipeline.gemspec +++ b/html-pipeline.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |gem| gem.require_paths = ["lib"] gem.add_dependency "nokogiri", RUBY_VERSION < "1.9.2" ? [">= 1.4", "< 1.6"] : "~> 1.4" - gem.add_dependency "activesupport", RUBY_VERSION < "1.9.3" ? [">= 2", "< 4"] : ">= 2" + gem.add_dependency "activesupport", RUBY_VERSION < "1.9.3" ? [">= 2", "< 4"] : [">= 2", "< 4.1"] gem.post_install_message = <