lib/em-proxy/proxy.rb in em-proxy-0.1.1 vs lib/em-proxy/proxy.rb in em-proxy-0.1.2

- old
+ new

@@ -7,10 +7,10 @@ trap("TERM") { stop } trap("INT") { stop } EventMachine::start_server(options[:host], options[:port], EventMachine::ProxyServer::Connection, options) do |c| - c.instance_eval(&blk) + blk.call(c) end end end def self.stop