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

18 lines
430 B
Ruby
Raw Normal View History

module Rails
module Generators
class MailerGenerator < NamedBase
2009-06-25 11:34:09 -04:00
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
2009-06-25 09:45:15 -04:00
invoke_for :template_engine, :test_framework
end
end
end