aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/generators/mailer_generator.rb
blob: d3048c3168af8bf44581c806b19d59058ed0432c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Rails
  module Generators
    class MailerGenerator < NamedBase
      argument :actions, :type => :array, :default => [], :banner => "method method"
      check_class_collision

      def self.source_root
        File.expand_path("../mailer/templates", __FILE__)
      end

      def create_mailer_file
        template "mailer.rb", File.join('app/mailers', class_path, "#{file_name}.rb")
      end

      hook_for :template_engine, :test_framework
    end
  end
end