Parent

Files

Rails::Generators::ApiResourceRouteGenerator

Public Instance Methods

add_resource_route() click to toggle source
# File lib/generators/rails/api_resource_route/api_resource_route_generator.rb, line 6
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 << ", except: :edit"
  route_config << " end" * regular_class_path.size
  route route_config
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.