reve_ai 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: 280bf1673c22b411163ea4dad09eae4a7ca07a06dceefee1d10b54cc2a07a097
4
- data.tar.gz: 288d3493fcd73b1827003b785c29fd0c7ce53a76a302769e03054686508d2dc4
3
+ metadata.gz: 3521245e81bb791e68e3bf8bbdd9d4f1c325b621a164e9126091cc7ec349ee99
4
+ data.tar.gz: fc4c447d73bf93ad39909b7c51c444b22fe393bb5aa06ba1300a3dac64171fcd
5
5
  SHA512:
6
- metadata.gz: 604e38817990a60d470e0c24b96033c88b27774012e6dac07e6392c7f413d02fd8c123a92978868eb972790dea4ad23f11ce73226c11db88f0c3a5482aff7e52
7
- data.tar.gz: 202c65bafdcd96b002cff7a083f10b7efd4c05e187b0add59831833e8d6dfd88e7aa0fac49037b986a5aedb4bcf19eceb3b6d4a679741a2acb3bd7577bc5a27f
6
+ metadata.gz: dbc3e027851edffb5dc34b1f53719855857f43f512f403ccac146a455d820798f67e40787b210cb46b6032030396b619f5f750875c7c9beebb411afd47d13886
7
+ data.tar.gz: 326cc725907f9275e966fdb34072bb03da90909b0d52ed376f092d701d7726bc9148697b8c08c997784fd4c9a6b60d58e2b4a0393fe00ceb4de312b3cb471c00
data/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0] - 2026-01-04
9
+
10
+ ### Added
11
+
12
+ - Initial release
13
+ - `ReveAI::Client` for API authentication and configuration
14
+ - Image generation via `client.images.generate`
15
+ - Image editing via `client.images.edit`
16
+ - Image remix via `client.images.remix`
17
+ - Automatic retry with exponential backoff via Faraday
18
+ - Configurable timeouts and base URL
data/README.md CHANGED
@@ -195,6 +195,12 @@ bundle exec rake test
195
195
  bundle exec rubocop
196
196
  ```
197
197
 
198
+ ## Release
199
+
200
+ ```sh
201
+ bundle exec rake release
202
+ ```
203
+
198
204
  ## Contributing
199
205
 
200
206
  Bug reports and pull requests are welcome on GitHub at https://github.com/dpaluy/reve_ai.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module ReveAI
4
4
  # @return [String] Current gem version
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reve_ai
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
  - dpaluy
@@ -44,8 +44,10 @@ email:
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files:
47
+ - CHANGELOG.md
47
48
  - README.md
48
49
  files:
50
+ - CHANGELOG.md
49
51
  - README.md
50
52
  - Rakefile
51
53
  - lib/reve_ai.rb
@@ -81,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
83
  - !ruby/object:Gem::Version
82
84
  version: '0'
83
85
  requirements: []
84
- rubygems_version: 4.0.3
86
+ rubygems_version: 3.6.9
85
87
  specification_version: 4
86
88
  summary: Ruby client for the Reve image generation API.
87
89
  test_files: []