From 6d02b75b2b0b372a0b762667cb39c1cbdcef12dd Mon Sep 17 00:00:00 2001 From: claudiob Date: Tue, 1 Sep 2015 09:29:16 -0700 Subject: Require sprockets-rails >= 2 Fixes https://github.com/rails/rails/commit/4d157ea8c15186c4903fa83f2dc51a5f78d13a37 Without any specification about the version of sprockets-rails, running a `bundle install` on a brand new app might result in sprockets 0.0.1 being installed. However, the minimum requirement is sprockets-rails 2 (see https://github.com/rails/rails/pull/17752/files) --- rails.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rails.gemspec') diff --git a/rails.gemspec b/rails.gemspec index 52112680b2..0286af0a57 100644 --- a/rails.gemspec +++ b/rails.gemspec @@ -28,5 +28,5 @@ Gem::Specification.new do |s| s.add_dependency 'railties', version s.add_dependency 'bundler', '>= 1.3.0', '< 2.0' - s.add_dependency 'sprockets-rails' + s.add_dependency 'sprockets-rails', '>= 2.0.0' end -- cgit v1.2.3