mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Add Gemfile to the rails application generator
This commit is contained in:
@@ -54,6 +54,7 @@ module Rails::Generators
|
||||
copy_file "Rakefile"
|
||||
copy_file "README"
|
||||
copy_file "config.ru"
|
||||
template "Gemfile"
|
||||
end
|
||||
|
||||
def create_app_files
|
||||
|
||||
10
railties/lib/rails/generators/rails/app/templates/Gemfile
Normal file
10
railties/lib/rails/generators/rails/app/templates/Gemfile
Normal file
@@ -0,0 +1,10 @@
|
||||
# Gemfile is where you list all of your application's dependencies
|
||||
#
|
||||
gem "rails", "<%= Rails::VERSION::STRING %>"
|
||||
#
|
||||
# Bundling edge rails:
|
||||
# gem "rails", "<%= Rails::VERSION::STRING %>", :git => "git://github.com/rails/rails.git"
|
||||
|
||||
# You can list more dependencies here
|
||||
# gem "nokogiri"
|
||||
# gem "merb" # ;)
|
||||
Reference in New Issue
Block a user