Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .yardopts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--markup markdown
--readme README.md
lib
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
## [Released]

## [1.3.2] - 2025-10-23
### Added
- YARD documentation generation support with `.yardopts` configuration
- Added `yard` gem as development dependency for API documentation

### Fixed
- Fixed YARD link resolution warning in README.md by converting markdown link to HTML format

### Documentation
- Configured YARD to generate comprehensive API documentation
- Documentation coverage: 70.59% (51 methods, 22 classes, 5 modules)

**Full Changelog**: https://github.com/Sentia/zai-payment/compare/v1.3.1...v1.3.2

## [1.3.1] - 2025-10-23
### Changed
- Update error response format
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ group :development, :test do
gem 'rubocop-packaging', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rspec', require: false
gem 'yard', '~> 0.9.37', require: false
end
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
zai_payment (1.3.1)
zai_payment (1.3.2)
base64 (~> 0.3.0)
faraday (~> 2.0)
openssl (~> 3.3)
Expand Down Expand Up @@ -119,6 +119,7 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
yard (0.9.37)

PLATFORMS
arm64-darwin-24
Expand All @@ -135,6 +136,7 @@ DEPENDENCIES
simplecov
vcr
webmock
yard (~> 0.9.37)
zai_payment!

BUNDLED WITH
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ token = token_provider.bearer_token

The gem handles OAuth2 Client Credentials flow automatically - tokens are cached and refreshed before expiration.

📖 **[Complete Authentication Guide](docs/AUTHENTICATION.md)** - Two approaches, examples, and best practices
📖 **<a href="docs/AUTHENTICATION.md">Complete Authentication Guide</a>** - Two approaches, examples, and best practices

### Users

Expand Down
2 changes: 1 addition & 1 deletion lib/zai_payment/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ZaiPayment
VERSION = '1.3.1'
VERSION = '1.3.2'
end