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

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

      hook_for :template_engine, :test_framework
    end
  end
end