Sha256: 3da377b7113e35ebe78cfdcc6a3340d5727111f241f7538d3e1988ad9d5d9314
Contents?: true
Size: 1.09 KB
Versions: 6
Compression:
Stored size: 1.09 KB
Contents
require 'lib/em-proxy' Proxy.start(:host => "0.0.0.0", :port => 80, :debug => true) do |conn| @start = Time.now @data = Hash.new("") conn.server :test, :host => "127.0.0.1", :port => 81 # production, will render resposne conn.server :prod, :host => "127.0.0.1", :port => 82 # testing, internal only conn.on_data do |data| # rewrite User-Agent data.gsub(/User-Agent: .*?\r\n/, "User-Agent: em-proxy/0.1\r\n") end conn.on_response do |server, resp| # only render response from production @data[server] += resp resp if server == :prod end conn.on_finish do |name| p [:on_finish, name, Time.now - @start] p @data end end # # ruby examples/appserver.rb 81 # ruby examples/appserver.rb 82 # ruby examples/line_interceptor.rb # curl localhost # # > [:on_finish, 1.008561] # > {:prod=>"HTTP/1.1 200 OK\r\nConnection: close\r\nDate: Fri, 01 May 2009 04:20:00 GMT\r\nContent-Type: text/plain\r\n\r\nhello world: 0", # :test=>"HTTP/1.1 200 OK\r\nConnection: close\r\nDate: Fri, 01 May 2009 04:20:00 GMT\r\nContent-Type: text/plain\r\n\r\nhello world: 1"} #
Version data entries
6 entries across 6 versions & 1 rubygems