diff --git a/hotsock.gemspec b/hotsock.gemspec index b689c3a..b9739c0 100644 --- a/hotsock.gemspec +++ b/hotsock.gemspec @@ -11,10 +11,18 @@ Gem::Specification.new do |spec| spec.email = ["support@hotsock.io"] 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/ diff --git a/lib/hotsock/version.rb b/lib/hotsock/version.rb index b3723cf..7bd1c21 100644 --- a/lib/hotsock/version.rb +++ b/lib/hotsock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Hotsock - VERSION = "1.0.0" + VERSION = "1.0.1" end