[Source]
# File lib/mechanize/chain/pre_connect_hook.rb, line 7 7: def initialize 8: @hooks = [] 9: end
# File lib/mechanize/chain/pre_connect_hook.rb, line 11 11: def handle(ctx, params) 12: @hooks.each { |hook| hook.call(params) } 13: super 14: end
[Validate]