aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2016-01-15 15:21:25 -0500
committerArthur Neves <arthurnn@gmail.com>2016-01-15 15:21:25 -0500
commita3f24024f92853c2f3c4349365450edb8459a098 (patch)
tree185a5d8c6f7c4000811436155c049c38357a2cd0
parentba54be31cfa1f8f9f604d43c2cf727da29741194 (diff)
downloadrails-a3f24024f92853c2f3c4349365450edb8459a098.tar.gz
rails-a3f24024f92853c2f3c4349365450edb8459a098.tar.bz2
rails-a3f24024f92853c2f3c4349365450edb8459a098.zip
rack-cache 1.3+ dont work with old ruby versions
-rw-r--r--Gemfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 2854a809e0..daccb2e6b0 100644
--- a/Gemfile
+++ b/Gemfile
@@ -20,6 +20,10 @@ end
gem 'i18n', '~> 0.6.11'
gem 'test-unit', '~> 3.0'
+if RUBY_VERSION < '1.9.3'
+ gem 'rack-cache', '~> 1.2.0'
+end
+
# This needs to be with require false to avoid
# it being automatically loaded by sprockets
gem 'uglifier', '>= 1.0.3', :require => false