basecradle 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 +12 -0
- data/lib/basecradle/items.rb +1 -0
- data/lib/basecradle/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: 35bf5b2be0b5b6a26742dcb2bd5f8edfd95febce1e18dca890f172ce0ccb50c9
|
|
4
|
+
data.tar.gz: f30e474e0b9f9e87161b740ed356f564075b694c72ea679e210b009f740dddc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6d96590ac7b4f15fe11df01b105678f7749481356ab401820645bb3b9caa5b21f33fd1822a6bb13a57ff796eaf18f2a0897d82d5cf1ceab134874ea85319509
|
|
7
|
+
data.tar.gz: 35594418860fc88925dae5e0fd6957964aebfd396d97986d0d8bbc0e32812f8f52d244bfd76f55145be40e9acc23029525517f1eae3f5d94a1af87a2b57f7d07
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.1] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **Asset upload from an IO or `Pathname` no longer raises `NameError`.** `items.rb`
|
|
12
|
+
referenced `Pathname` without requiring `"pathname"`, so in a bare consumer process
|
|
13
|
+
(one not loading Rails/activesupport) any non-`String` `file:` argument — `StringIO`,
|
|
14
|
+
`File`, `Pathname` — crashed with `uninitialized constant Pathname`; only `String`
|
|
15
|
+
paths worked, by short-circuit luck. The gem now requires its own `pathname`
|
|
16
|
+
dependency. ([#31](https://github.com/basecradle/basecradle-ruby/issues/31))
|
|
17
|
+
|
|
7
18
|
## [0.1.0] - 2026-06-04
|
|
8
19
|
|
|
9
20
|
The first real release — the full read/write surface of the BaseCradle API, mirroring
|
|
@@ -33,4 +44,5 @@ the Python SDK's behavior in idiomatic Ruby. Zero runtime dependencies.
|
|
|
33
44
|
- **Quality bars** — a README-as-tested-doc harness (every example runs against a mocked
|
|
34
45
|
API) and a spec drift-guard (CI fails if the live API grows beyond the SDK).
|
|
35
46
|
|
|
47
|
+
[0.1.1]: https://github.com/basecradle/basecradle-ruby/releases/tag/v0.1.1
|
|
36
48
|
[0.1.0]: https://github.com/basecradle/basecradle-ruby/releases/tag/v0.1.0
|
data/lib/basecradle/items.rb
CHANGED
data/lib/basecradle/version.rb
CHANGED