Class: Rails::AppBuilder
- Defined in:
- railties/lib/rails/generators/rails/app/app_generator.rb
Overview
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.
Instance Method Summary collapse
- #app ⇒ Object
- #bin ⇒ Object
- #config ⇒ Object
- #config_when_updating ⇒ Object
- #configru ⇒ Object
- #database_yml ⇒ Object
- #db ⇒ Object
- #gemfile ⇒ Object
- #gitignore ⇒ Object
- #lib ⇒ Object
- #log ⇒ Object
- #public_directory ⇒ Object
- #rakefile ⇒ Object
- #readme ⇒ Object
- #test ⇒ Object
- #tmp ⇒ Object
- #vendor ⇒ Object
- #vendor_javascripts ⇒ Object
- #vendor_stylesheets ⇒ Object
Instance Method Details
#app ⇒ Object
56 57 58 59 60 61 62 63 64 65 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 56 def app directory 'app' keep_file 'app/assets/images' keep_file 'app/mailers' keep_file 'app/models' keep_file 'app/controllers/concerns' keep_file 'app/models/concerns' end |
#bin ⇒ Object
67 68 69 70 71 72 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 67 def bin directory "bin" do |content| "#{shebang}\n" + content end chmod "bin", 0755 & ~File.umask, verbose: false end |
#config ⇒ Object
74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 74 def config empty_directory "config" inside "config" do template "routes.rb" template "application.rb" template "environment.rb" template "secrets.yml" directory "environments" directory "initializers" directory "locales" end end |
#config_when_updating ⇒ Object
89 90 91 92 93 94 95 96 97 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 89 def config_when_updating = File.exist?('config/initializers/cookies_serializer.rb') config unless gsub_file 'config/initializers/cookies_serializer.rb', /json/, 'marshal' end end |
#configru ⇒ Object
48 49 50 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 48 def configru template "config.ru" end |
#database_yml ⇒ Object
99 100 101 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 99 def database_yml template "config/databases/#{[:database]}.yml", "config/database.yml" end |
#db ⇒ Object
103 104 105 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 103 def db directory "db" end |
#gemfile ⇒ Object
44 45 46 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 44 def gemfile template "Gemfile" end |
#gitignore ⇒ Object
52 53 54 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 52 def gitignore copy_file "gitignore", ".gitignore" end |
#lib ⇒ Object
107 108 109 110 111 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 107 def lib empty_directory 'lib' empty_directory_with_keep_file 'lib/tasks' empty_directory_with_keep_file 'lib/assets' end |
#log ⇒ Object
113 114 115 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 113 def log empty_directory_with_keep_file 'log' end |
#public_directory ⇒ Object
117 118 119 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 117 def public_directory directory "public", "public", recursive: false end |
#rakefile ⇒ Object
36 37 38 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 36 def rakefile template "Rakefile" end |
#readme ⇒ Object
40 41 42 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 40 def readme copy_file "README.rdoc", "README.rdoc" end |
#test ⇒ Object
121 122 123 124 125 126 127 128 129 130 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 121 def test empty_directory_with_keep_file 'test/fixtures' empty_directory_with_keep_file 'test/controllers' empty_directory_with_keep_file 'test/mailers' empty_directory_with_keep_file 'test/models' empty_directory_with_keep_file 'test/helpers' empty_directory_with_keep_file 'test/integration' template 'test/test_helper.rb' end |
#tmp ⇒ Object
132 133 134 135 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 132 def tmp empty_directory "tmp/cache" empty_directory "tmp/cache/assets" end |
#vendor ⇒ Object
137 138 139 140 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 137 def vendor vendor_javascripts vendor_stylesheets end |
#vendor_javascripts ⇒ Object
142 143 144 145 146 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 142 def vendor_javascripts unless [:skip_javascript] empty_directory_with_keep_file 'vendor/assets/javascripts' end end |
#vendor_stylesheets ⇒ Object
148 149 150 |
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 148 def vendor_stylesheets empty_directory_with_keep_file 'vendor/assets/stylesheets' end |