wamp_client 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88ac69bf71835662d1f123c94b07bf92ca94b189
4
- data.tar.gz: b9da3b27b1f05f12a1052d713c28b66853432792
3
+ metadata.gz: 87be6cf98c5f02b19c59566bd0dca4c740bc72ea
4
+ data.tar.gz: 027fdc23b28f45c66f527716fe5836e8cd0aa093
5
5
  SHA512:
6
- metadata.gz: a47eb2d137dbad7ea3736de31676203b3808afafbb42e26451a290294f4007422ce7b30d32aa54ecdefd50c3a23140026a8e63ebe1a2903fcd46a3129f613f47
7
- data.tar.gz: 85b93e1e82135411bd6c40b35e2f1a162eee35e4777c94629e7b173823c0edff3e7ddd60aa9ee47e5d960d71b22185d03729b8df3d264efba8fd31fa777a9221
6
+ metadata.gz: 684135ebcb5a497b45d40f526dcd94dc59ac5f4c914681c6a6c790f1d375ee1b52aaf8b63159b95b665cce4db1982c6206eff88ac3d08abee651cd2dad4182ee
7
+ data.tar.gz: de64371b6db6b9deaad66af0296d413b160848508fe36fb8fb70cd8288138d5f7693cd3fcb4022e4ff1aa15964a0ecec06e88042c99b09f3366345aa6289a276
data/README.md CHANGED
@@ -10,6 +10,9 @@ Client for talking to a WAMP Router. This is defined at
10
10
 
11
11
  ## Revision History
12
12
 
13
+ - v0.0.5:
14
+ - Fixed issue where excluding the 'authmethods' and 'authid' was setting their values to none rather
15
+ than excluding them. This was being rejected by some routers
13
16
  - v0.0.4:
14
17
  - Added the ability to turn on logging by adding 'verbose' to the options
15
18
  - v0.0.3:
@@ -220,8 +220,8 @@ module WampClient
220
220
  details = {}
221
221
  details[:roles] = WAMP_FEATURES
222
222
  details[:agent] = "Ruby-WampClient-#{WampClient::VERSION}"
223
- details[:authid] = self.options[:authid]
224
- details[:authmethods] = self.options[:authmethods]
223
+ details[:authid] = self.options[:authid] if self.options[:authid]
224
+ details[:authmethods] = self.options[:authmethods] if self.options[:authmethods]
225
225
 
226
226
  # Send Hello message
227
227
  hello = WampClient::Message::Hello.new(realm, details)
@@ -26,5 +26,5 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
26
  =end
27
27
 
28
28
  module WampClient
29
- VERSION = '0.0.4'
29
+ VERSION = '0.0.5'
30
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wamp_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Chapman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-04 00:00:00.000000000 Z
11
+ date: 2016-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler