websocket-extensions 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of websocket-extensions might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +8 -4
- data/LICENSE.md +9 -17
- data/README.md +2 -2
- data/lib/websocket/extensions/parser.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7820a309cf08485c15d1b831be4a2a9b15d4e754dbdf573cc67960f68526fe25
|
4
|
+
data.tar.gz: 0f47a86a75722413a3086b2d97ff7a9395926279ba9da7a0a3b7e8beea7dab34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b40d64358de343b7684a64ab68a18d4e9c4951ff8027271710c1450fb68315f416c785acbba94098fbdd3e1a9910b435d6fa09e1522ba710cae70223fecba28f
|
7
|
+
data.tar.gz: 13892dac1c28a87fea45d24c4d3107614396fd99fb9b04d2f55b3012f48dc4a31ff50f281488cb63eacfebc46f849e326f50519ae72df742bf36706675f8d28b
|
data/CHANGELOG.md
CHANGED
@@ -1,15 +1,19 @@
|
|
1
|
+
### 0.1.4 / 2019-06-10
|
2
|
+
|
3
|
+
- Fix a deprecation warning for using the `=~` operator on `true`
|
4
|
+
|
1
5
|
### 0.1.3 / 2017-11-11
|
2
6
|
|
3
|
-
|
7
|
+
- Accept extension names and parameters including uppercase letters
|
4
8
|
|
5
9
|
### 0.1.2 / 2015-02-19
|
6
10
|
|
7
|
-
|
11
|
+
- Make it safe to call `Extensions#close` if the handshake is not complete
|
8
12
|
|
9
13
|
### 0.1.1 / 2014-12-14
|
10
14
|
|
11
|
-
|
15
|
+
- Explicitly require `strscan` which is not loaded in a vanilla Ruby environment
|
12
16
|
|
13
17
|
### 0.1.0 / 2014-12-13
|
14
18
|
|
15
|
-
|
19
|
+
- Initial release
|
data/LICENSE.md
CHANGED
@@ -1,20 +1,12 @@
|
|
1
|
-
|
1
|
+
Copyright 2014-2019 James Coglan
|
2
2
|
|
3
|
-
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
4
|
+
this file except in compliance with the License. You may obtain a copy of the
|
5
|
+
License at
|
4
6
|
|
5
|
-
|
6
|
-
this software and associated documentation files (the 'Software'), to deal in
|
7
|
-
the Software without restriction, including without limitation the rights to
|
8
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
-
subject to the following conditions:
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
11
8
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
9
|
+
Unless required by applicable law or agreed to in writing, software distributed
|
10
|
+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
11
|
+
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
12
|
+
specific language governing permissions and limitations under the License.
|
data/README.md
CHANGED
@@ -309,5 +309,5 @@ the session to release any resources it's using.
|
|
309
309
|
|
310
310
|
## Examples
|
311
311
|
|
312
|
-
|
313
|
-
|
312
|
+
- Consumer: [websocket-driver](https://github.com/faye/websocket-driver-ruby)
|
313
|
+
- Provider: [permessage-deflate](https://github.com/faye/permessage-deflate-ruby)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: websocket-extensions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Coglan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -38,7 +38,7 @@ files:
|
|
38
38
|
- lib/websocket/extensions/parser.rb
|
39
39
|
homepage: https://github.com/faye/websocket-extensions-ruby
|
40
40
|
licenses:
|
41
|
-
-
|
41
|
+
- Apache-2.0
|
42
42
|
metadata: {}
|
43
43
|
post_install_message:
|
44
44
|
rdoc_options:
|
@@ -59,8 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
61
|
requirements: []
|
62
|
-
|
63
|
-
rubygems_version: 2.6.13
|
62
|
+
rubygems_version: 3.0.3
|
64
63
|
signing_key:
|
65
64
|
specification_version: 4
|
66
65
|
summary: Generic extension manager for WebSocket connections
|