hotsock 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.
- checksums.yaml +4 -4
- data/hotsock.gemspec +9 -1
- data/lib/hotsock/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e81cbf2bb541b6b4e0b24f3b7ca888c8e1b90e57b5f55a0ddd23c287d0ba6aba
|
|
4
|
+
data.tar.gz: 64a5760fb87ec6d08522d3af3e770218056ad88c4501545c08099acebd5976a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5626bbd14afcf34e0858cb1e7bc99b4aa729bb877798e62fa8730863a49f2cec96269e4357f8fa0ceef6acb777d0d293aa438c22ab09cdb4d46a9112fe4ca51
|
|
7
|
+
data.tar.gz: 0dde0944c0b3049da320ac73c5c8ee312f77f52491970416057512dde27c37e5732a867ed91be25251b934e3291c3da567bfae03c5aade6193dbcd4f5decffcd
|
data/hotsock.gemspec
CHANGED
|
@@ -11,10 +11,18 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.email = ["support@hotsock.io"]
|
|
12
12
|
spec.homepage = "https://www.hotsock.io"
|
|
13
13
|
spec.summary = "Ruby bindings for the Hotsock message publishing APIs and JWT signing"
|
|
14
|
-
spec.description = "Hotsock is a real-time WebSockets service for your web and mobile applications, fully-managed and self-hosted in your AWS account."
|
|
14
|
+
spec.description = "Hotsock is a real-time WebSockets service for your web and mobile applications, fully-managed and self-hosted in your AWS account. This gem provides the Ruby bindings for message publishing APIs and JWT signing."
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
spec.required_ruby_version = ">= 3.1"
|
|
17
17
|
|
|
18
|
+
spec.metadata = {
|
|
19
|
+
"homepage_uri" => "https://www.hotsock.io",
|
|
20
|
+
"bug_tracker_uri" => "https://github.com/hotsock/hotsock-ruby/issues",
|
|
21
|
+
"documentation_uri" => "https://github.com/hotsock/hotsock-ruby/blob/main/README.md",
|
|
22
|
+
"changelog_uri" => "https://github.com/hotsock/hotsock-ruby/releases",
|
|
23
|
+
"source_code_uri" => "https://github.com/hotsock/hotsock-ruby"
|
|
24
|
+
}
|
|
25
|
+
|
|
18
26
|
ignored = Regexp.union(
|
|
19
27
|
/\A\.git/,
|
|
20
28
|
/\Atest/
|
data/lib/hotsock/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hotsock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Miller
|
|
@@ -39,7 +39,8 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.105'
|
|
41
41
|
description: Hotsock is a real-time WebSockets service for your web and mobile applications,
|
|
42
|
-
fully-managed and self-hosted in your AWS account.
|
|
42
|
+
fully-managed and self-hosted in your AWS account. This gem provides the Ruby bindings
|
|
43
|
+
for message publishing APIs and JWT signing.
|
|
43
44
|
email:
|
|
44
45
|
- support@hotsock.io
|
|
45
46
|
executables: []
|
|
@@ -60,7 +61,12 @@ files:
|
|
|
60
61
|
homepage: https://www.hotsock.io
|
|
61
62
|
licenses:
|
|
62
63
|
- MIT
|
|
63
|
-
metadata:
|
|
64
|
+
metadata:
|
|
65
|
+
homepage_uri: https://www.hotsock.io
|
|
66
|
+
bug_tracker_uri: https://github.com/hotsock/hotsock-ruby/issues
|
|
67
|
+
documentation_uri: https://github.com/hotsock/hotsock-ruby/blob/main/README.md
|
|
68
|
+
changelog_uri: https://github.com/hotsock/hotsock-ruby/releases
|
|
69
|
+
source_code_uri: https://github.com/hotsock/hotsock-ruby
|
|
64
70
|
post_install_message:
|
|
65
71
|
rdoc_options: []
|
|
66
72
|
require_paths:
|
|
@@ -76,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
82
|
- !ruby/object:Gem::Version
|
|
77
83
|
version: '0'
|
|
78
84
|
requirements: []
|
|
79
|
-
rubygems_version: 3.3
|
|
85
|
+
rubygems_version: 3.5.3
|
|
80
86
|
signing_key:
|
|
81
87
|
specification_version: 4
|
|
82
88
|
summary: Ruby bindings for the Hotsock message publishing APIs and JWT signing
|