# File lib/protocols/httpclient.rb, line 68 68: def self.request( args = {} ) 69: args[:port] ||= 80 70: EventMachine.connect( args[:host], args[:port], self ) {|c| 71: # According to the docs, we will get here AFTER post_init is called. 72: c.instance_eval {@args = args} 73: } 74: end