Skip to content

Commit

Permalink
Make dev and edge app generation options generate edge arel on Gemfile
Browse files Browse the repository at this point in the history
Signed-off-by: José Valim <jose.valim@gmail.com>
  • Loading branch information
spastorino authored and josevalim committed Apr 12, 2010
1 parent a8b1ca2 commit 25cb213
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions railties/lib/rails/generators/rails/app/templates/Gemfile
Expand Up @@ -2,8 +2,10 @@ source 'http://rubygems.org'

<%- if options.dev? -%>
gem 'rails', :path => '<%= Rails::Generators::RAILS_DEV_PATH %>'
gem 'arel', :git => 'git://github.com/rails/arel.git'
<%- elsif options.edge? -%>
gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'arel', :git => 'git://github.com/rails/arel.git'
<%- else -%>
gem 'rails', '<%= Rails::VERSION::STRING %>'
Expand Down

0 comments on commit 25cb213

Please sign in to comment.