Class: Rails::Generators::ResourceGenerator

Inherits:
ModelGenerator show all
Includes:
ResourceHelpers
Defined in:
railties/lib/rails/generators/rails/resource/resource_generator.rb

Overview

metagenerator

Direct Known Subclasses

ScaffoldGenerator

Instance Method Summary collapse

Methods included from ResourceHelpers

included, #initialize

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

Instance Method Details

#add_resource_routeObject



17
18
19
20
21
22
23
# File 'railties/lib/rails/generators/rails/resource/resource_generator.rb', line 17

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