From da49220ba84bcbccca1ad3707af4ed3c1efbbd0c Mon Sep 17 00:00:00 2001 From: Stephen Best Date: Sun, 25 Dec 2016 23:39:21 +0000 Subject: [PATCH] Allow ActiveSupport >4.0.0 Ruby 2.4.0 does not work with version 1.8.3 of the JSON gem which was required by ActiveSupport 4.x. Allowing use of ActiveSupport 5.x in turn allows use of JSON 2.x which is compatible with 2.4.0 https://github.com/flori/json/issues/303 --- terrestrial.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terrestrial.gemspec b/terrestrial.gemspec index e8d4939..afb363a 100644 --- a/terrestrial.gemspec +++ b/terrestrial.gemspec @@ -26,6 +26,6 @@ Gem::Specification.new do |spec| spec.add_development_dependency "pg", "~> 0.17.1" spec.add_dependency "sequel", "~> 4.16" - spec.add_dependency "activesupport", "~> 4.0" + spec.add_dependency "activesupport", "> 4.0" spec.add_dependency "fetchable", "~> 1.0" end