examples/worker.rb in grenache-ruby-http-0.2.8 vs examples/worker.rb in grenache-ruby-http-0.2.9

- old
+ new

@@ -1,16 +1,18 @@ require_relative '../lib/grenache-ruby-http.rb' -Grenache::Http.configure do |conf| - conf.grape_address = "http://127.0.0.1:40002/" -end +# This is another way to set a configuration: +# +# Grenache::Http.configure do |conf| +# conf.grape_address = "http://127.0.0.1:40002/" +# end EM.run do Signal.trap("INT") { EventMachine.stop } Signal.trap("TERM") { EventMachine.stop } - c = Grenache::Http.new + c = Grenache::Http.new grape_address: "http://127.0.0.1:40002/" c.listen('rpc_test', 5004) do |msg| #[StandardError.new("Error!"),"hello #{msg.payload}"] [nil, "hello #{msg.payload}"] end