1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailer/lib/generators/mailer_generator.rb
2010-04-29 16:45:57 -07:00

18 lines
474 B
Ruby

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