1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailer/lib/rails/generators/mailer/mailer_generator.rb

18 lines
509 B
Ruby
Raw Normal View History

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
def create_mailer_file
template "mailer.rb", File.join('app/mailers', class_path, "#{file_name}.rb")
2014-11-24 04:37:32 -05:00
template "application_mailer.rb", 'app/mailers/application_mailer.rb'
end
2009-06-27 08:27:26 -04:00
hook_for :template_engine, :test_framework
end
end
end