mirror of https://github.com/rails/rails
parent
2e4c9c2ee5
commit
31815d7167
2
Gemfile
2
Gemfile
|
@ -2,8 +2,6 @@ source 'https://rubygems.org'
|
|||
|
||||
gemspec
|
||||
|
||||
gem 'rack', github: 'rack/rack'
|
||||
|
||||
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
||||
gem 'rake', '>= 10.3'
|
||||
|
||||
|
|
|
@ -195,9 +195,9 @@ module Rails
|
|||
|
||||
def rails_gemfile_entry
|
||||
if options.dev?
|
||||
[GemfileEntry.path('rails', Rails::Generators::RAILS_DEV_PATH), GemfileEntry.github('rack', 'rack/rack')]
|
||||
[GemfileEntry.path('rails', Rails::Generators::RAILS_DEV_PATH)]
|
||||
elsif options.edge?
|
||||
[GemfileEntry.github('rails', 'rails/rails'), GemfileEntry.github('rack', 'rack/rack')]
|
||||
[GemfileEntry.github('rails', 'rails/rails')]
|
||||
else
|
||||
[GemfileEntry.version('rails',
|
||||
Rails::VERSION::STRING,
|
||||
|
|
Loading…
Reference in New Issue