Class: Rails::Generators::ResourceGenerator
- Inherits:
-
ModelGenerator
- Object
- Thor::Group
- Base
- NamedBase
- ModelGenerator
- Rails::Generators::ResourceGenerator
- Includes:
- ResourceHelpers
- Defined in:
- lib/rails/generators/rails/resource/resource_generator.rb
Overview
metagenerator
Direct Known Subclasses
Instance Method Summary collapse
Methods included from ResourceHelpers
Methods inherited from NamedBase
Methods inherited from Base
base_root, class_option, default_source_root, desc, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #capify!, #environment, #freeze!, #gem, #generate, #git, #initializer, #lib, #plugin, #rake, #rakefile, #readme, #route, #vendor
Instance Method Details
#add_resource_route ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/rails/generators/rails/resource/resource_generator.rb', line 17 def add_resource_route return if [:actions].present? route_config = class_path.collect{|namespace| "namespace :#{namespace} do " }.join(" ") route_config << "resources :#{file_name.pluralize}" route_config << " end" * class_path.size route route_config end |