module Roda::RodaPlugins::MatchHookArgs::RequestMethods
Private Instance Methods
Source
# File lib/roda/plugins/match_hook_args.rb, line 83 def always scope._match_hook_args(nil, nil) super end
Call the match hook with nil matchers and blocks before yielding to the block
Calls superclass method
Source
# File lib/roda/plugins/match_hook_args.rb, line 75 def if_match(v) super do |*a| scope._match_hook_args(v, a) yield(*a) end end
Call the match hook with matchers and block args if yielding to the block before yielding to the block.
Calls superclass method