README.md in wamp_client-0.0.3 vs README.md in wamp_client-0.0.4
- old
+ new
@@ -8,10 +8,12 @@
https://tools.ietf.org/html/draft-oberstet-hybi-tavendo-wamp-02
## Revision History
+ - v0.0.4:
+ - Added the ability to turn on logging by adding 'verbose' to the options
- v0.0.3:
- Fixed issue 1: Empty args will omit kwargs on some message types
- v0.0.2:
- Added defer call result support
- Added progressive callee support
@@ -50,10 +52,11 @@
```ruby
require 'wamp_client'
options = {
uri: 'ws://127.0.0.1:8080/ws',
- realm: 'realm1'
+ realm: 'realm1',
+ verbose: true
}
connection = WampClient::Connection.new(options)
connection.on_join do |session, details|
puts "Session Open"