-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotsock.gemspec
34 lines (28 loc) · 1.29 KB
/
hotsock.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
$LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib"))
require "hotsock/version"
Gem::Specification.new do |spec|
spec.name = "hotsock"
spec.version = Hotsock::VERSION
spec.authors = ["James Miller"]
spec.email = ["[email protected]"]
spec.homepage = "https://www.hotsock.io"
spec.summary = "Ruby bindings for the Hotsock message publishing APIs and JWT signing"
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."
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata = {
"homepage_uri" => "https://www.hotsock.io",
"bug_tracker_uri" => "https://github.com/hotsock/hotsock-ruby/issues",
"documentation_uri" => "https://github.com/hotsock/hotsock-ruby/blob/main/README.md",
"changelog_uri" => "https://github.com/hotsock/hotsock-ruby/releases",
"source_code_uri" => "https://github.com/hotsock/hotsock-ruby"
}
ignored = Regexp.union(
/\A\.git/,
/\Atest/
)
spec.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
spec.add_dependency "jwt", "~> 2.7"
spec.add_dependency "aws-sdk-lambda", "~> 1.105"
end