Class: Rails::Generators::AppGenerator
- Inherits:
-
AppBase
show all
- Defined in:
- railties/lib/rails/commands/application.rb,
railties/lib/rails/generators/rails/app/app_generator.rb
Constant Summary
Constants inherited
from AppBase
Rails::Generators::AppBase::DATABASES, Rails::Generators::AppBase::JDBC_DATABASES
Instance Attribute Summary
Attributes inherited from AppBase
#rails_template
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from AppBase
add_shared_options_for
Methods inherited from Base
base_root, class_option, default_source_root, desc, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #capify!, #environment, #gem, #gem_group, #generate, #git, #initializer, #lib, #plugin, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
Returns a new instance of AppGenerator.
156
157
158
159
160
161
162
163
164
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 156
def initialize(*args)
raise Error, "Options should be given after the application name. For details run: rails --help" if args[0].blank?
super
if !options[:skip_active_record] && !DATABASES.include?(options[:database])
raise Error, "Invalid value for --database option. Supported for preconfiguration are: #{DATABASES.join(", ")}."
end
end
|
Class Method Details
.exit_on_failure? ⇒ Boolean
We want to exit on failure to be kind to other libraries This is only when accessing via CLI
31
32
33
|
# File 'railties/lib/rails/commands/application.rb', line 31
def self.exit_on_failure?
true
end
|
Instance Method Details
#create_active_record_files ⇒ Object
188
189
190
191
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 188
def create_active_record_files
return if options[:skip_active_record]
build(:database_yml)
end
|
#create_app_files ⇒ Object
176
177
178
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 176
def create_app_files
build(:app)
end
|
#create_boot_file ⇒ Object
184
185
186
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 184
def create_boot_file
template "config/boot.rb"
end
|
#create_config_files ⇒ Object
180
181
182
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 180
def create_config_files
build(:config)
end
|
#create_db_files ⇒ Object
193
194
195
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 193
def create_db_files
build(:db)
end
|
#create_doc_files ⇒ Object
197
198
199
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 197
def create_doc_files
build(:doc)
end
|
#create_lib_files ⇒ Object
201
202
203
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 201
def create_lib_files
build(:lib)
end
|
#create_log_files ⇒ Object
205
206
207
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 205
def create_log_files
build(:log)
end
|
#create_public_files ⇒ Object
209
210
211
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 209
def create_public_files
build(:public_directory)
end
|
#create_root_files ⇒ Object
168
169
170
171
172
173
174
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 168
def create_root_files
build(:readme)
build(:rakefile)
build(:configru)
build(:gitignore) unless options[:skip_git]
build(:gemfile) unless options[:skip_gemfile]
end
|
#create_script_files ⇒ Object
213
214
215
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 213
def create_script_files
build(:script)
end
|
#create_test_files ⇒ Object
217
218
219
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 217
def create_test_files
build(:test) unless options[:skip_test_unit]
end
|
#create_tmp_files ⇒ Object
221
222
223
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 221
def create_tmp_files
build(:tmp)
end
|
#create_vendor_files ⇒ Object
225
226
227
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 225
def create_vendor_files
build(:vendor)
end
|
#finish_template ⇒ Object
229
230
231
|
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 229
def finish_template
build(:leftovers)
end
|