Namespace
- CLASS ActionDispatch::Journey::Route::VerbMatchers::All
- CLASS ActionDispatch::Journey::Route::VerbMatchers::Unknown
Constants
| VERBS | = | %w{ DELETE GET HEAD OPTIONS LINK PATCH POST PUT TRACE UNLINK } |
| VERB_TO_CLASS | = | VERBS.each_with_object({ :all => All }) do |verb, hash| klass = const_get verb hash[verb] = klass hash[verb.downcase] = klass hash[verb.downcase.to_sym] = klass end |