Class: Rails::Generators::MailerGenerator
- Defined in:
- actionmailer/lib/rails/generators/mailer/mailer_generator.rb
Instance Method Summary collapse
Methods inherited from NamedBase
Methods inherited from Base
base_root, class_option, default_source_root, desc, exit_on_failure?, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #environment, #gem, #gem_group, #generate, #git, #github, #initialize, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
This class inherits a constructor from Rails::Generators::NamedBase
Instance Method Details
#create_mailer_file ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'actionmailer/lib/rails/generators/mailer/mailer_generator.rb', line 12 def create_mailer_file template "mailer.rb", File.join("app/mailers", class_path, "#{file_name}_mailer.rb") in_root do if behavior == :invoke && !File.exist?(application_mailer_file_name) template "application_mailer.rb", application_mailer_file_name end end end |