blob: 1482fc28d456e7a634f288db7921d6b2e2f8a3c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module Rails
module Generators
class ControllerGenerator < NamedBase # :nodoc:
argument :actions, :type => :array, :default => [], :banner => "action action"
check_class_collision :suffix => "Controller"
def create_controller_files
template 'controller.rb', File.join('app/controllers', class_path, "#{file_name}_controller.rb")
end
def add_routes
actions.reverse.each do |action|
route %{get "#{file_name}/#{action}"}
end
end
hook_for :template_engine, :test_framework, :helper, :assets
end
end
end
|