blob: 4ec2f4c9f4565077b53f3a32764fde82c73855fd (
plain) (
tree)
|
|
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
|