Public Instance methods
freeze()
Freeze the class_matchers hash when freezing the app.
[show source]
# File lib/roda/plugins/symbol_matchers.rb 143 def freeze 144 opts[:symbol_matchers].freeze 145 super 146 end
symbol_matcher(s, matcher, opts=OPTS, &block)
Set the matcher and block to use for the given class. The matcher can be a regexp, registered symbol matcher, or registered class matcher (if using the class_matchers plugin).
If providing a regexp, the block given will be called with all regexp captures. If providing a registered symbol or class, the block will be called with the captures returned by the block for the registered symbol or class, or the regexp captures if no block was registered with the symbol or class. In either case, if a block is given, it should return an array with the captures to yield to the match block.
[show source]
# File lib/roda/plugins/symbol_matchers.rb 134 def symbol_matcher(s, matcher, opts=OPTS, &block) 135 _symbol_class_matcher(Symbol, s, matcher, block, opts) do |meth, array| 136 define_method(meth){array} 137 end 138 139 nil 140 end