moderation_api 2.0.0 → 2.0.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 +8 -0
- data/README.md +2 -4
- data/lib/moderation_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7d5ba12d2690e74004078f8d787a1b64864d2ce70ffb1a6b664b86c1c025dfb
|
|
4
|
+
data.tar.gz: 6a24ef5021401d5a0d5a33797022bd14d14cb754299d1c63e423f770611883c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92c7c5ec938b1f2dadef844161f7b118d590bc33bb5a73b8e030304b004dc0fb023246e4da5f8fa1bd3f99209a574d7ac48682c65bad4bd4e96d884c57cd4846
|
|
7
|
+
data.tar.gz: 4f7654eaceb8961be8b3df78822f86bf3fcf509ec33c6cdb29b6e7ec0e15112188495cfbad2a74ef00e0140f03626f2908e981eea7fb7cd550b1f817b40b9f09
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.1 (2025-12-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v2.0.0...v2.0.1](https://github.com/moderation-api/sdk-ruby/compare/v2.0.0...v2.0.1)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* updated readme ([a824572](https://github.com/moderation-api/sdk-ruby/commit/a8245722455e6486264a86e3e18d4bad516cc2f1))
|
|
10
|
+
|
|
3
11
|
## 2.0.0 (2025-12-05)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.0.1...v2.0.0](https://github.com/moderation-api/sdk-ruby/compare/v0.0.1...v2.0.0)
|
data/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
# Moderation API Ruby
|
|
1
|
+
# Moderation API Ruby library
|
|
2
2
|
|
|
3
3
|
The Moderation API Ruby library provides convenient access to the Moderation API REST API from any Ruby 3.2.0+ application. It ships with comprehensive types & docstrings in Yard, RBS, and RBI – [see below](https://github.com/moderation-api/sdk-ruby#Sorbet) for usage with Sorbet. The standard library's `net/http` is used as the HTTP transport, with connection pooling via the `connection_pool` gem.
|
|
4
4
|
|
|
5
|
-
It is generated with [Stainless](https://www.stainless.com/).
|
|
6
|
-
|
|
7
5
|
## Documentation
|
|
8
6
|
|
|
9
7
|
Documentation for releases of this gem can be found [on RubyDoc](https://gemdocs.org/gems/moderation_api).
|
|
@@ -17,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
17
15
|
<!-- x-release-please-start-version -->
|
|
18
16
|
|
|
19
17
|
```ruby
|
|
20
|
-
gem "moderation_api", "~> 2.0.
|
|
18
|
+
gem "moderation_api", "~> 2.0.1"
|
|
21
19
|
```
|
|
22
20
|
|
|
23
21
|
<!-- x-release-please-end -->
|