websocket-client-simple 0.3.0 → 0.3.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.
- checksums.yaml +5 -5
- data/.github/workflows/test.yml +23 -0
- data/.gitignore +2 -0
- data/History.txt +5 -0
- data/README.md +3 -3
- data/lib/websocket-client-simple/version.rb +1 -1
- data/websocket-client-simple.gemspec +12 -4
- metadata +16 -12
- data/circle.yml +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6d8831f5be8aa53190a5219b4a245b56722cdc421572d5670958e82962d4fbb1
|
4
|
+
data.tar.gz: 8f59c91e11fa7e672ab5b48f1d1d447a215af4be3891c68f36214a0f893254a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eedeaff30cd560fd44127254696e9a7ee4b5a44fb38fa1d59274a90f744118e2b92c43f6a9cad245f1da431a69f94fc13274ff5dd66d7275261187d0d349481c
|
7
|
+
data.tar.gz: 20c709ce576c3ee020b79f09082d9ba01a0eb28837e0fcf7afedef851ccb63c026e2502e5d236a0a2490cfc4241dc36d2e2c792ef10cc1a24ff5c969e9c53260
|
@@ -0,0 +1,23 @@
|
|
1
|
+
on:
|
2
|
+
push:
|
3
|
+
branches:
|
4
|
+
- "*"
|
5
|
+
pull_request:
|
6
|
+
branches:
|
7
|
+
- "*"
|
8
|
+
schedule:
|
9
|
+
- cron: "0 0 * * 6" # At 00:00 on Saturday
|
10
|
+
jobs:
|
11
|
+
test:
|
12
|
+
runs-on: ubuntu-20.04
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
ruby: ["3.1", "3.0", "2.7", "2.6"]
|
16
|
+
name: Ruby ${{ matrix.ruby }}
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v2
|
19
|
+
- uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
bundler-cache: true
|
23
|
+
- run: bundle exec rake
|
data/.gitignore
CHANGED
data/History.txt
CHANGED
@@ -1,6 +1,11 @@
|
|
1
|
+
=== 0.3.1 2021-12-30
|
2
|
+
|
3
|
+
* The development of this repository has moved to https://github.com/ruby-jp/websocket-client-simple
|
4
|
+
|
1
5
|
=== 0.3.0 2016-02-20
|
2
6
|
|
3
7
|
* "connect" method runs a given block before connecting WebSocket #12
|
8
|
+
* thank you for suggestion @codekitchen
|
4
9
|
|
5
10
|
=== 0.2.5 2016-02-18
|
6
11
|
|
data/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
websocket-client-simple
|
2
2
|
=======================
|
3
|
-
Simple WebSocket Client for Ruby
|
3
|
+
Simple WebSocket Client for Ruby (original author: @shokai)
|
4
4
|
|
5
|
-
- https://github.com/
|
5
|
+
- https://github.com/ruby-jp/websocket-client-simple
|
6
6
|
- https://rubygems.org/gems/websocket-client-simple
|
7
7
|
|
8
|
-
[](https://github.com/ruby-jp/websocket-client-simple/actions/workflows/test.yml)
|
9
9
|
|
10
10
|
Installation
|
11
11
|
------------
|
@@ -5,19 +5,27 @@ require 'websocket-client-simple/version'
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "websocket-client-simple"
|
7
7
|
spec.version = WebSocket::Client::Simple::VERSION
|
8
|
-
spec.authors = ["Sho Hashimoto"]
|
9
|
-
spec.email = ["hashimoto@shokai.org"]
|
8
|
+
spec.authors = ["Sho Hashimoto", "Yusuke Nakamura"]
|
9
|
+
spec.email = ["hashimoto@shokai.org", "yusuke1994525@gmail.com"]
|
10
10
|
spec.description = %q{Simple WebSocket Client for Ruby}
|
11
11
|
spec.summary = spec.description
|
12
|
-
spec.homepage = "https://github.com/
|
12
|
+
spec.homepage = "https://github.com/ruby-jp/websocket-client-simple"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
|
+
if spec.respond_to?(:metadata)
|
16
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
17
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
18
|
+
spec.metadata["changelog_uri"] = "https://github.com/ruby-jp/websocket-client-simple/blob/master/History.txt"
|
19
|
+
end
|
20
|
+
|
21
|
+
spec.post_install_message = "The development of this gem has moved to #{spec.homepage}."
|
22
|
+
|
15
23
|
spec.files = `git ls-files`.split($/).reject{|f| f == "Gemfile.lock" }
|
16
24
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
25
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
26
|
spec.require_paths = ["lib"]
|
19
27
|
|
20
|
-
spec.add_development_dependency "bundler"
|
28
|
+
spec.add_development_dependency "bundler"
|
21
29
|
spec.add_development_dependency "rake"
|
22
30
|
spec.add_development_dependency "minitest"
|
23
31
|
spec.add_development_dependency "websocket-eventmachine-server"
|
metadata
CHANGED
@@ -1,29 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: websocket-client-simple
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sho Hashimoto
|
8
|
+
- Yusuke Nakamura
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2021-12-30 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- - "
|
18
|
+
- - ">="
|
18
19
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
+
version: '0'
|
20
21
|
type: :development
|
21
22
|
prerelease: false
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
23
24
|
requirements:
|
24
|
-
- - "
|
25
|
+
- - ">="
|
25
26
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
27
|
+
version: '0'
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
29
|
name: rake
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -111,17 +112,18 @@ dependencies:
|
|
111
112
|
description: Simple WebSocket Client for Ruby
|
112
113
|
email:
|
113
114
|
- hashimoto@shokai.org
|
115
|
+
- yusuke1994525@gmail.com
|
114
116
|
executables: []
|
115
117
|
extensions: []
|
116
118
|
extra_rdoc_files: []
|
117
119
|
files:
|
120
|
+
- ".github/workflows/test.yml"
|
118
121
|
- ".gitignore"
|
119
122
|
- Gemfile
|
120
123
|
- History.txt
|
121
124
|
- LICENSE.txt
|
122
125
|
- README.md
|
123
126
|
- Rakefile
|
124
|
-
- circle.yml
|
125
127
|
- lib/websocket-client-simple.rb
|
126
128
|
- lib/websocket-client-simple/client.rb
|
127
129
|
- lib/websocket-client-simple/version.rb
|
@@ -134,11 +136,14 @@ files:
|
|
134
136
|
- test/test_helper.rb
|
135
137
|
- test/test_websocket_client_simple.rb
|
136
138
|
- websocket-client-simple.gemspec
|
137
|
-
homepage: https://github.com/
|
139
|
+
homepage: https://github.com/ruby-jp/websocket-client-simple
|
138
140
|
licenses:
|
139
141
|
- MIT
|
140
|
-
metadata:
|
141
|
-
|
142
|
+
metadata:
|
143
|
+
homepage_uri: https://github.com/ruby-jp/websocket-client-simple
|
144
|
+
source_code_uri: https://github.com/ruby-jp/websocket-client-simple
|
145
|
+
changelog_uri: https://github.com/ruby-jp/websocket-client-simple/blob/master/History.txt
|
146
|
+
post_install_message: The development of this gem has moved to https://github.com/ruby-jp/websocket-client-simple.
|
142
147
|
rdoc_options: []
|
143
148
|
require_paths:
|
144
149
|
- lib
|
@@ -153,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
158
|
- !ruby/object:Gem::Version
|
154
159
|
version: '0'
|
155
160
|
requirements: []
|
156
|
-
|
157
|
-
rubygems_version: 2.4.5
|
161
|
+
rubygems_version: 3.1.6
|
158
162
|
signing_key:
|
159
163
|
specification_version: 4
|
160
164
|
summary: Simple WebSocket Client for Ruby
|
data/circle.yml
DELETED