aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-08-24 12:55:55 +0530
committerArun Agrawal <arunagw@gmail.com>2012-08-24 12:55:55 +0530
commit0ec7b35e34dd6614e058ba4850fc2809455b5278 (patch)
treeb39baa66b5efee84620a5d05628f6389082f71ae /railties/lib/rails
parentd5fe242d2a8aad4868a905da97da3a242fa265a4 (diff)
downloadrails-0ec7b35e34dd6614e058ba4850fc2809455b5278.tar.gz
rails-0ec7b35e34dd6614e058ba4850fc2809455b5278.tar.bz2
rails-0ec7b35e34dd6614e058ba4850fc2809455b5278.zip
We need to have 1-0-stable for joureny gem in edge
Problem : Edge rails can't bundle Fixes #7437
Diffstat (limited to 'railties/lib/rails')
-rw-r--r--railties/lib/rails/generators/app_base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 52a2df350f..398319ca55 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -138,13 +138,13 @@ module Rails
if options.dev?
<<-GEMFILE.strip_heredoc
gem 'rails', :path => '#{Rails::Generators::RAILS_DEV_PATH}'
- gem 'journey', :git => 'git://github.com/rails/journey.git'
+ gem 'journey', :git => 'git://github.com/rails/journey.git', :branch => '1-0-stable'
gem 'arel', :git => 'git://github.com/rails/arel.git', :branch => '3-0-stable'
GEMFILE
elsif options.edge?
<<-GEMFILE.strip_heredoc
gem 'rails', :git => 'git://github.com/rails/rails.git', :branch => '3-2-stable'
- gem 'journey', :git => 'git://github.com/rails/journey.git'
+ gem 'journey', :git => 'git://github.com/rails/journey.git', :branch => '1-0-stable'
gem 'arel', :git => 'git://github.com/rails/arel.git', :branch => '3-0-stable'
GEMFILE
else