aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/rails/generators/mailer/mailer_generator.rb
blob: 97a01f9ef3f9b5a74c80e22cb41be6a36f128505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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")
        template "application_mailer.rb", File.join('app/mailers/application_mailer.rb')
      end

      hook_for :template_engine, :test_framework
    end
  end
end