diff options
author | Juan Manuel Azambuja <juan@wyeworks.com> | 2012-04-18 10:54:50 -0300 |
---|---|---|
committer | Juan Manuel Azambuja <juan@wyeworks.com> | 2012-04-18 10:54:50 -0300 |
commit | c90b43f696f67b219cac6e2a32684789fed17736 (patch) | |
tree | 6133eb87be8984fe8089beb4b67a9930eca9a820 /railties | |
parent | e9f778af9a1bd531cc2fa4b72aea2d106f74371f (diff) | |
download | rails-c90b43f696f67b219cac6e2a32684789fed17736.tar.gz rails-c90b43f696f67b219cac6e2a32684789fed17736.tar.bz2 rails-c90b43f696f67b219cac6e2a32684789fed17736.zip |
Add missing dependency for active_record_deprecated_finders
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/app_base.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb index da1e48ecb9..8c8ed5010f 100644 --- a/railties/lib/rails/generators/app_base.rb +++ b/railties/lib/rails/generators/app_base.rb @@ -137,12 +137,14 @@ module Rails gem 'rails', :path => '#{Rails::Generators::RAILS_DEV_PATH}' gem 'journey', :git => 'https://github.com/rails/journey.git' gem 'arel', :git => 'https://github.com/rails/arel.git' + gem 'active_record_deprecated_finders', :git => 'git://github.com/rails/active_record_deprecated_finders.git' GEMFILE elsif options.edge? <<-GEMFILE.strip_heredoc gem 'rails', :git => 'https://github.com/rails/rails.git' gem 'journey', :git => 'https://github.com/rails/journey.git' gem 'arel', :git => 'https://github.com/rails/arel.git' + gem 'active_record_deprecated_finders', :git => 'git://github.com/rails/active_record_deprecated_finders.git' GEMFILE else <<-GEMFILE.strip_heredoc |