libwebsocket 0.1.7.1 → 0.1.8

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
+ ## 0.1.8 / 2013-03-26
4
+
5
+ - Bugfixes for Ruby 2.0.0
6
+
3
7
  ## 0.1.7.1 / 2012-11-29
4
8
 
5
9
  - Restore behaviour of LibWebSocket::OpeningHandshake::Client#url
@@ -44,7 +44,7 @@ module LibWebSocket
44
44
  # frame.next; # => foo
45
45
  # frame.next; # => bar
46
46
  def next
47
- return unless @buffer.slice!(/^[^\x00]*\x00(.*?)\xff/m)
47
+ return unless @buffer.slice!(/^[^\x00]*\x00(.*?)\xff/nm)
48
48
 
49
49
  string = $1
50
50
  string.force_encoding('UTF-8') if string.respond_to?(:force_encoding)
@@ -1,3 +1,3 @@
1
1
  module LibWebSocket
2
- VERSION = '0.1.7.1'
2
+ VERSION = '0.1.8'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libwebsocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7.1
4
+ version: 0.1.8
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-11-29 00:00:00.000000000 Z
12
+ date: 2013-03-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: websocket
@@ -98,15 +98,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
98
98
  - - ! '>='
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
+ segments:
102
+ - 0
103
+ hash: -530298984389804594
101
104
  required_rubygems_version: !ruby/object:Gem::Requirement
102
105
  none: false
103
106
  requirements:
104
107
  - - ! '>='
105
108
  - !ruby/object:Gem::Version
106
109
  version: '0'
110
+ segments:
111
+ - 0
112
+ hash: -530298984389804594
107
113
  requirements: []
108
114
  rubyforge_project:
109
- rubygems_version: 1.8.24
115
+ rubygems_version: 1.8.25
110
116
  signing_key:
111
117
  specification_version: 3
112
118
  summary: Universal Ruby library to handle WebSocket protocol