Class: Rails::Generators::ResourceRouteGenerator

Inherits:
NamedBase show all
Defined in:
railties/lib/rails/generators/rails/resource_route/resource_route_generator.rb

Instance Method Summary collapse

Methods inherited from NamedBase

#initialize

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, #gem, #gem_group, #generate, #git, #initializer, #lib, #plugin, #rake, #rakefile, #readme, #route, #vendor

Constructor Details

This class inherits a constructor from Rails::Generators::NamedBase

Instance Method Details

#add_resource_routeObject



4
5
6
7
8
9
10
# File 'railties/lib/rails/generators/rails/resource_route/resource_route_generator.rb', line 4

def add_resource_route
  return if options[:actions].present?
  route_config =  regular_class_path.collect{ |namespace| "namespace :#{namespace} do " }.join(" ")
  route_config << "resources :#{file_name.pluralize}"
  route_config << " end" * regular_class_path.size
  route route_config
end