Add default routes minus :index
# File lib/brakeman/processors/lib/route_helper.rb, line 55 def add_resource_routes existing_routes = @tracker.routes[@current_controller] unless existing_routes.is_a? Array and existing_routes.first == :allow_all_actions existing_routes.merge [:new, :create, :show, :edit, :update, :destroy] end end
Add default routes
# File lib/brakeman/processors/lib/route_helper.rb, line 46 def add_resources_routes existing_routes = @tracker.routes[@current_controller] unless existing_routes.is_a? Array and existing_routes.first == :allow_all_actions existing_routes.merge [:index, :new, :create, :show, :edit, :update, :destroy] end end
Add route to controller. If a controller is specified, the current controller will be set to that controller. If no controller is specified, uses current controller value.
# File lib/brakeman/processors/lib/route_helper.rb, line 27 def add_route route, controller = nil if node_type? route, :str, :lit route = route.value end route = route.to_sym if controller self.current_controller = controller end routes = @tracker.routes[@current_controller] if routes and routes != :allow_all_actions routes << route end end
Sets the controller name to a proper class name. For example
self.current_controller = :session @controller == :SessionController #true
Also prepends the prefix if there is one set.
# File lib/brakeman/processors/lib/route_helper.rb, line 19 def current_controller= name @current_controller = (prefix + camelize(name) + "Controller").to_sym @tracker.routes[@current_controller] ||= Set.new end
Generated with the Darkfish Rdoc Generator 2.