zai_payment 1.3.1 → 1.3.2

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: dabc0f9dc5f73ccb000c026d7a13eb171d14e447d0968af90458ddbc618ed415
4
- data.tar.gz: a0152f5b7d19286f58d2c0cb0e7e551f657e3e3ddba54211ccb37fb145206674
3
+ metadata.gz: ade9b6f62eed95e49deeb4d8b95403125a4725c6da54139c6d3e05a7f2c85000
4
+ data.tar.gz: 0d30a4009a97b4a41d49a94058d7337ef61595e9796c8447c5903922684ac214
5
5
  SHA512:
6
- metadata.gz: eca4cb501d4135796dc7947eb21110ba1581672860450343995284f64209e200348791ade1573a599540702c82c86427f4fb5d3dcc7d4b3d91a1c775263fbd62
7
- data.tar.gz: 45aabfa5d699dcb06c9e527ff72690698cdb70ab635d813070a94811f73b596bad47bde1771828eea1f200f6f2a1b805841cdc52677e69ef55994b0de9e5c96e
6
+ metadata.gz: a76e4c841210f11031ed7306fd42d03a6d8a3030befec711071f8b3cfe3e3688ae0e16db53268ebdbeb5803c3b1c7bf20de07564eec20205c4032248f05ba782
7
+ data.tar.gz: ef1e8abb3173c35bcec05c79d4be9d28916f28aa036c03f9de23d5ed3af2e50eab28a71b9f101382f79fcea5497a23ddfab6f6ec0a4eb8105521a10e494d8faf
data/.yardopts ADDED
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ --readme README.md
3
+ lib
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## [Released]
2
2
 
3
+ ## [1.3.2] - 2025-10-23
4
+ ### Added
5
+ - YARD documentation generation support with `.yardopts` configuration
6
+ - Added `yard` gem as development dependency for API documentation
7
+
8
+ ### Fixed
9
+ - Fixed YARD link resolution warning in README.md by converting markdown link to HTML format
10
+
11
+ ### Documentation
12
+ - Configured YARD to generate comprehensive API documentation
13
+ - Documentation coverage: 70.59% (51 methods, 22 classes, 5 modules)
14
+
15
+ **Full Changelog**: https://github.com/Sentia/zai-payment/compare/v1.3.1...v1.3.2
16
+
3
17
  ## [1.3.1] - 2025-10-23
4
18
  ### Changed
5
19
  - Update error response format
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![GitHub License](https://img.shields.io/github/license/Sentia/zai-payment)
4
4
  [![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-MIT-blue.svg)](./CODE_OF_CONDUCT.md)
5
- [![Gem Version](https://badge.fury.io/rb/zai_payment.svg)](https://badge.fury.io/rb/zai_payment)
5
+ [![Gem Version](https://img.shields.io/gem/v/zai_payment.svg)](https://rubygems.org/gems/zai_payment)
6
6
  [![GitHub release](https://img.shields.io/github/release/Sentia/zai-payment.svg)](https://github.com/Sentia/zai-payment/releases)
7
7
  [![Gem](https://img.shields.io/gem/dt/zai_payment.svg)](https://rubygems.org/gems/zai_payment)
8
8
  [![CI](https://github.com/Sentia/zai-payment/actions/workflows/ci.yml/badge.svg)](https://github.com/Sentia/zai-payment/actions/workflows/ci.yml)
@@ -77,7 +77,7 @@ token = token_provider.bearer_token
77
77
 
78
78
  The gem handles OAuth2 Client Credentials flow automatically - tokens are cached and refreshed before expiration.
79
79
 
80
- 📖 **[Complete Authentication Guide](docs/AUTHENTICATION.md)** - Two approaches, examples, and best practices
80
+ 📖 **<a href="docs/AUTHENTICATION.md">Complete Authentication Guide</a>** - Two approaches, examples, and best practices
81
81
 
82
82
  ### Users
83
83
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZaiPayment
4
- VERSION = '1.3.1'
4
+ VERSION = '1.3.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zai_payment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eddy Jaga
@@ -58,6 +58,7 @@ executables: []
58
58
  extensions: []
59
59
  extra_rdoc_files: []
60
60
  files:
61
+ - ".yardopts"
61
62
  - CHANGELOG.md
62
63
  - CODE_OF_CONDUCT.md
63
64
  - CONTRIBUTING.md
@@ -116,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
117
  - !ruby/object:Gem::Version
117
118
  version: '0'
118
119
  requirements: []
119
- rubygems_version: 3.7.1
120
+ rubygems_version: 3.6.7
120
121
  specification_version: 4
121
122
  summary: Ruby gem for Zai payment integration
122
123
  test_files: []