method

guard_conditions

rails latest stable - Class: ActionController::Routing::Optimisation::PositionalArguments

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

guard_conditions()
public

No documentation available.

# File actionpack/lib/action_controller/routing/optimisations.rb, line 67
        def guard_conditions
          number_of_arguments = route.required_segment_keys.size
          # if they're using foo_url(:id=>2) it's one
          # argument, but we don't want to generate /foos/id2
          if number_of_arguments == 1
            ["args.size == 1", "!args.first.is_a?(Hash)"]
          else
            ["args.size == #{number_of_arguments}"]
          end
        end