Skip to content

Commit

Permalink
improve gemspec description and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
bensie committed Apr 23, 2024
1 parent 539dfb0 commit d8eea1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion hotsock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,18 @@ Gem::Specification.new do |spec|
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."
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/
Expand Down
2 changes: 1 addition & 1 deletion lib/hotsock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Hotsock
VERSION = "1.0.0"
VERSION = "1.0.1"
end

0 comments on commit d8eea1b

Please sign in to comment.