Methods
- C
- N
- T
Class Public methods
new(defaults, set, block)
Link
Instance Public methods
controller_reference(controller_param)
Link
# File actionpack/test/controller/routing_test.rb, line 1764 def controller_reference(controller_param) block = @block set = @set Class.new(ActionController::Base) { include set.url_helpers define_method(:process) { |name| block.call(self) } def to_a; [200, {}, []]; end } end