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 +4 -4
- data/.yardopts +3 -0
- data/CHANGELOG.md +14 -0
- data/README.md +2 -2
- data/lib/zai_payment/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ade9b6f62eed95e49deeb4d8b95403125a4725c6da54139c6d3e05a7f2c85000
|
|
4
|
+
data.tar.gz: 0d30a4009a97b4a41d49a94058d7337ef61595e9796c8447c5903922684ac214
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a76e4c841210f11031ed7306fd42d03a6d8a3030befec711071f8b3cfe3e3688ae0e16db53268ebdbeb5803c3b1c7bf20de07564eec20205c4032248f05ba782
|
|
7
|
+
data.tar.gz: ef1e8abb3173c35bcec05c79d4be9d28916f28aa036c03f9de23d5ed3af2e50eab28a71b9f101382f79fcea5497a23ddfab6f6ec0a4eb8105521a10e494d8faf
|
data/.yardopts
ADDED
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
|

|
|
4
4
|
[](./CODE_OF_CONDUCT.md)
|
|
5
|
-
[](https://rubygems.org/gems/zai_payment)
|
|
6
6
|
[](https://github.com/Sentia/zai-payment/releases)
|
|
7
7
|
[](https://rubygems.org/gems/zai_payment)
|
|
8
8
|
[](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
|
-
📖
|
|
80
|
+
📖 **<a href="docs/AUTHENTICATION.md">Complete Authentication Guide</a>** - Two approaches, examples, and best practices
|
|
81
81
|
|
|
82
82
|
### Users
|
|
83
83
|
|
data/lib/zai_payment/version.rb
CHANGED
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.
|
|
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
|
|
120
|
+
rubygems_version: 3.6.7
|
|
120
121
|
specification_version: 4
|
|
121
122
|
summary: Ruby gem for Zai payment integration
|
|
122
123
|
test_files: []
|