[Source]
# File lib/rbot/core/utils/httputil.rb, line 719 719: def initialize(*a) 720: super(*a) 721: debug 'initializing httputil' 722: @bot.httputil = Irc::Utils::HttpUtil.new(@bot) 723: end
# File lib/rbot/core/utils/httputil.rb, line 725 725: def cleanup 726: debug 'shutting down httputil' 727: @bot.httputil.cleanup 728: @bot.httputil = nil 729: super 730: end
[Validate]