aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-19 22:26:11 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-19 22:27:20 -0300
commitbfc6c17a87792012443e7b083e3e86810173c113 (patch)
tree995980b635aa94aedde4f36acf50d9b8b4d9a7bd /railties/lib
parent5341b84936d93ec90e6252af437a3871101c115a (diff)
downloadrails-bfc6c17a87792012443e7b083e3e86810173c113.tar.gz
rails-bfc6c17a87792012443e7b083e3e86810173c113.tar.bz2
rails-bfc6c17a87792012443e7b083e3e86810173c113.zip
We don't need this anymore since we had a sprockets-rails release
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/generators/app_base.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 09ce81d0f9..e761e26b04 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -138,14 +138,12 @@ module Rails
end
def rails_gemfile_entry
- # TODO remove sprockets-rails from this list when the version 2.0 is realease
if options.dev?
<<-GEMFILE.strip_heredoc
gem 'rails', path: '#{Rails::Generators::RAILS_DEV_PATH}'
gem 'journey', github: 'rails/journey'
gem 'arel', github: 'rails/arel'
gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
- gem 'sprockets-rails', github: 'rails/sprockets-rails'
GEMFILE
elsif options.edge?
<<-GEMFILE.strip_heredoc
@@ -153,7 +151,6 @@ module Rails
gem 'journey', github: 'rails/journey'
gem 'arel', github: 'rails/arel'
gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
- gem 'sprockets-rails', github: 'rails/sprockets-rails'
GEMFILE
else
<<-GEMFILE.strip_heredoc