aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/generators/rails/mailer/mailer_generator.rb
blob: 6e7e6e811efa17751acce0f9fd8ff71c731936cd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                                     
                                                                                    








                                                                                    
                                                  


       
module Rails
  module Generators
    class MailerGenerator < NamedBase
      argument :actions, :type => :array, :default => [], :banner => "method method"

      def check_class_collision
        class_collisions class_name
      end

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

      invoke_for :template_engine, :test_framework
    end
  end
end