mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5697bdbb6d
Following the same naming convention used in controllers and jobs.
25 lines
689 B
Ruby
25 lines
689 B
Ruby
module Rails
|
|
module Generators
|
|
class MailerGenerator < NamedBase
|
|
source_root File.expand_path("../templates", __FILE__)
|
|
|
|
argument :actions, type: :array, default: [], banner: "method method"
|
|
|
|
check_class_collision suffix: "Mailer"
|
|
|
|
def create_mailer_file
|
|
template "mailer.rb", File.join('app/mailers', class_path, "#{file_name}_mailer.rb")
|
|
if self.behavior == :invoke
|
|
template "application_mailer.rb", 'app/mailers/application_mailer.rb'
|
|
end
|
|
end
|
|
|
|
hook_for :template_engine, :test_framework
|
|
|
|
protected
|
|
def file_name
|
|
@_file_name ||= super.gsub(/\_mailer/i, '')
|
|
end
|
|
end
|
|
end
|
|
end
|