aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/erb/mailer/mailer_generator.rb
blob: 4ec2f4c9f4565077b53f3a32764fde82c73855fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'generators/erb'

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

      def create_view_folder
        empty_directory File.join("app/views", file_path)
      end

      def create_view_files
        actions.each do |action|
          @action, @path = action, File.join(file_path, action)
          template "view.erb", File.join("app/views", "#{@path}.erb")
        end
      end
    end
  end
end