websocket-eventmachine-client 1.0.0 → 1.0.1

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.
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1
4
+
5
+ - ensure compatibility with em-websocket
6
+
3
7
  ## 1.0.0
4
8
 
5
9
  - initial release
@@ -53,7 +53,7 @@ module WebSocket
53
53
  # @private
54
54
  def post_init
55
55
  @state = :connecting
56
- @handshake = WebSocket::Handshake::Client.new(@args)
56
+ @handshake = ::WebSocket::Handshake::Client.new(@args)
57
57
  end
58
58
 
59
59
  # Called by EventMachine after connecting.
@@ -67,11 +67,11 @@ module WebSocket
67
67
  private
68
68
 
69
69
  def incoming_frame
70
- WebSocket::Frame::Incoming::Client
70
+ ::WebSocket::Frame::Incoming::Client
71
71
  end
72
72
 
73
73
  def outgoing_frame
74
- WebSocket::Frame::Outgoing::Client
74
+ ::WebSocket::Frame::Outgoing::Client
75
75
  end
76
76
 
77
77
  public
@@ -1,7 +1,7 @@
1
1
  module WebSocket
2
2
  module EventMachine
3
3
  class Client
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: websocket-eventmachine-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-20 00:00:00.000000000 Z
12
+ date: 2012-12-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: websocket-eventmachine-base