jwt_auth_cognito 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd002e4c7b2a20d24633f29af47544d8fe6b15eeba7e35fbe52b8152a09228ad
4
- data.tar.gz: 38f681ce7fe3d9d9d7b6a7c95384ec2637f88f56b0cb9d794b6e945705b75dbb
3
+ metadata.gz: 0d77e2226f52db678b6f55adf088e8981592ae16826727bf550073dfec266a52
4
+ data.tar.gz: af438cc1f798e44400162c5908565bd722d1f8e5aca63fda22a395a6bb52af83
5
5
  SHA512:
6
- metadata.gz: 226064e684251b7e740d1c016ddd6f751d53bc3a99b6c4ae28d12faae19e91a53042cf6d4e8413d5fc79f3c3783bd83078e8eda7d8236755227379e276b1b8dc
7
- data.tar.gz: b94a68ee2b52cbffb93e95d73a56c46743954edb006de458366d0bc826e9e82b5dc684deab7b26567781992f3054287cbfa5c972cbc928511f1e6fa9d1c44862
6
+ metadata.gz: c7ca846691614c34476a20bd3be0e4c49b862706aa67a83d5dbef248474e36474f8a9e16dcf6cc2ae0f623c2d647af3df0aa40ed82762d0e50742c3358888a5c
7
+ data.tar.gz: 7cf3aa7826446d48d376236bba7ca60200f07d3c25a581fecd83c9c2e5c4bf5d111d5872522892d3c91a93c952dc7fd3c9b8ccc40cdb94ce237620b8bede2958
data/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.1] - 2025-08-14
11
+
12
+ ### Changed
13
+ - Updated gemspec documentation configuration for better RubyGems integration
14
+ - Added RDoc configuration for automatic documentation generation
15
+ - Set documentation_uri to point to RubyDoc.info for automated API docs
16
+ - Improved gem metadata for better discoverability
17
+
18
+ ### Fixed
19
+ - Enhanced documentation visibility on RubyGems.org
20
+
10
21
  ## [0.1.0] - 2024-06-16
11
22
 
12
23
  ### Added
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.metadata["homepage_uri"] = spec.homepage
19
19
  spec.metadata["source_code_uri"] = spec.homepage
20
20
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
21
- spec.metadata["documentation_uri"] = "#{spec.homepage}/blob/main/README.md"
21
+ spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/jwt_auth_cognito"
22
22
  spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
23
23
 
24
24
  # Specify which files should be added to the gem when it is released.
@@ -36,6 +36,10 @@ Gem::Specification.new do |spec|
36
36
  spec.bindir = "exe"
37
37
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
38
38
  spec.require_paths = ["lib"]
39
+
40
+ # Documentation
41
+ spec.rdoc_options = ["--charset=UTF-8"]
42
+ spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"]
39
43
 
40
44
  # Dependencies - compatible with llegando-neo (Ruby 2.7.5, Rails 5.2.6)
41
45
  spec.add_dependency "jwt", "~> 2.0"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JwtAuthCognito
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwt_auth_cognito
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Optimal
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-06-16 00:00:00.000000000 Z
11
+ date: 2025-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -154,7 +154,10 @@ email:
154
154
  - contact@theoptimal.com
155
155
  executables: []
156
156
  extensions: []
157
- extra_rdoc_files: []
157
+ extra_rdoc_files:
158
+ - README.md
159
+ - CHANGELOG.md
160
+ - LICENSE.txt
158
161
  files:
159
162
  - CHANGELOG.md
160
163
  - CLAUDE.md
@@ -183,10 +186,11 @@ metadata:
183
186
  homepage_uri: https://github.com/theoptimal/jwt-auth-cognito
184
187
  source_code_uri: https://github.com/theoptimal/jwt-auth-cognito
185
188
  changelog_uri: https://github.com/theoptimal/jwt-auth-cognito/blob/main/CHANGELOG.md
186
- documentation_uri: https://github.com/theoptimal/jwt-auth-cognito/blob/main/README.md
189
+ documentation_uri: https://www.rubydoc.info/gems/jwt_auth_cognito
187
190
  bug_tracker_uri: https://github.com/theoptimal/jwt-auth-cognito/issues
188
191
  post_install_message:
189
- rdoc_options: []
192
+ rdoc_options:
193
+ - "--charset=UTF-8"
190
194
  require_paths:
191
195
  - lib
192
196
  required_ruby_version: !ruby/object:Gem::Requirement