Sha256: 116d80d2774ce2293d0392bd9e2631fbc6fd4a1db953d3677f1a104eebe6ae15
Contents?: true
Size: 1.72 KB
Versions: 2
Compression:
Stored size: 1.72 KB
Contents
module Brakeman::RouteHelper #Manage Controller prefixes #@prefix is an Array, but this method returns a string #suitable for prefixing onto a controller name. def prefix if @prefix.length > 0 @prefix.join("::") << "::" else '' 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. def current_controller= name @current_controller = (prefix + camelize(name) + "Controller").to_sym @tracker.routes[@current_controller] ||= Set.new 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. def add_route route, controller = nil if node_type? route, :str, :lit route = route[1] 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 #Add default routes 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 default routes minus :index 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 end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brakeman-1.7.1 | lib/brakeman/processors/lib/route_helper.rb |
brakeman-1.7.0 | lib/brakeman/processors/lib/route_helper.rb |