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 +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +6 -0
- data/lib/reve_ai/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3521245e81bb791e68e3bf8bbdd9d4f1c325b621a164e9126091cc7ec349ee99
|
|
4
|
+
data.tar.gz: fc4c447d73bf93ad39909b7c51c444b22fe393bb5aa06ba1300a3dac64171fcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
data/lib/reve_ai/version.rb
CHANGED
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.
|
|
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:
|
|
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: []
|