tiny-rest-client 0.3.0 → 0.3.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 +9 -4
- data/lib/tiny_rest_client/version.rb +1 -1
- data/lib/tiny_rest_client.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af326927e84576cb42b3d9e393142fb01f1aa6bbcac7ed7901085bff3151b69a
|
|
4
|
+
data.tar.gz: 9e19a2142a5d29bd9f508bfd3be45cd593f1a8e162e5469e3c4b78983ea92e0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17e9c3dc4f4625440777824b70562e342bc19e820b22dc22590e0dc461b2cb2e6e3b2e222ca2a42960c3ce162ed90be746d12cba3a5a02a78bb15842e986d3d2
|
|
7
|
+
data.tar.gz: 7e1a2dd25002c4e82a63b7749ae6ef43de2423f01b47c35007f4bc81a11acb5a67ba74ee5c840a9f8c31bb3964d6564c4b80f627a4661b083850f8d5670304d9
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed `NoMethodError: undefined method compact_blank`. Replaced `compact_blank` with native Ruby `compact`
|
|
12
|
+
|
|
13
|
+
## [0.3.0] - 2026-03-19
|
|
14
|
+
|
|
10
15
|
### Added
|
|
11
16
|
- Class-level retries with configurable delay (throttling)
|
|
12
17
|
- `retries 3, delay: 0.5` - retry 3 times on 5xx errors with 500ms delay between attempts
|
|
@@ -41,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
41
46
|
- Full Minitest suite (classic + spec style examples)
|
|
42
47
|
- Basic README documentation
|
|
43
48
|
|
|
44
|
-
[
|
|
45
|
-
[0.2.1]: https://github.com/Dabrovsky/
|
|
46
|
-
[0.2.0]: https://github.com/Dabrovsky/
|
|
47
|
-
[0.1.0]: https://github.com/Dabrovsky/
|
|
49
|
+
[0.3.0]: https://github.com/Dabrovsky/tiny-rest-client/compare/v0.2.1...HEAD
|
|
50
|
+
[0.2.1]: https://github.com/Dabrovsky/tiny-rest-client/compare/v0.2.0...v0.2.1
|
|
51
|
+
[0.2.0]: https://github.com/Dabrovsky/tiny-rest-client/compare/v0.1.0...v0.2.0
|
|
52
|
+
[0.1.0]: https://github.com/Dabrovsky/tiny-rest-client/releases/tag/v0.1.0
|
data/lib/tiny_rest_client.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tiny-rest-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dabrovski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|