The application builder allows you to override elements of the application generator without being forced to reverse the operations of the default generator.
This allows you to override entire operations, like the creation of the Gemfile, README, or JavaScript files, without needing to know exactly what those operations do so you can create another template action.
Methods
- A
- C
- D
- G
- L
- P
- R
- S
- T
- V
Instance Public methods
app()
Link
config()
Link
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 62 def config empty_directory "config" inside "config" do template "routes.rb" template "application.rb" template "environment.rb" directory "environments" directory "initializers" directory "locales" end end
configru()
Link
database_yml()
Link
db()
Link
doc()
Link
gemfile()
Link
gitignore()
Link
lib()
Link
log()
Link
public_directory()
Link
rakefile()
Link
readme()
Link
script()
Link
test()
Link
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 109 def test empty_directory_with_gitkeep "test/fixtures" empty_directory_with_gitkeep "test/functional" empty_directory_with_gitkeep "test/integration" empty_directory_with_gitkeep "test/unit" template "test/performance/browsing_test.rb" template "test/test_helper.rb" end
tmp()
Link
vendor()
Link
vendor_javascripts()
Link
vendor_plugins()
Link