Flowdock
method

requirements

Importance_0
v3.0.5 - Show latest stable - 0 notes - Class: ActionDispatch::Routing::DeprecatedMapper::Resource
requirements(with_id = false) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/routing/deprecated_mapper.rb, line 237
        def requirements(with_id = false)
          @requirements   ||= @options[:requirements] || {}
          @id_requirement ||= { :id => @requirements.delete(:id) || /[^#{Routing::SEPARATORS.join}]+/ }

          with_id ? @requirements.merge(@id_requirement) : @requirements
        end
Register or log in to add new notes.