riffer-rig 0.1.0 → 0.1.2
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 +14 -0
- data/README.md +11 -9
- data/lib/riffer/rig/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 761f180d04e8bab840732d6649617fd6f7196406f0bc54c3f849d253dacefe9a
|
|
4
|
+
data.tar.gz: 1f352b9cc7e0f663e13580216262ddc5db9af8ffafefd0b5e0bfd9d062ad19e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc46ed7d22bff69600f6c51c03f77c3b70f7c82aca55487c2cb0d4f95c7818c3f37bd80f5b16112168e43354b3914ea910101c33a598ba3b29f05b036d045585
|
|
7
|
+
data.tar.gz: 32f112b0df082dc73833effe226bf8e940d201bac032a5c3630fb53ec29b9ed38162fd881f49933a2fc9158158ceb42634508150be91ef83602fc72626743972
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2](https://github.com/bottrall/riffer-rig/compare/v0.1.1...v0.1.2) (2026-09-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ci:** build and push the gem directly instead of rake release ([#148](https://github.com/bottrall/riffer-rig/issues/148)) ([7410915](https://github.com/bottrall/riffer-rig/commit/74109151a8275561dc1fac3bd6ec5b997a08e004))
|
|
9
|
+
|
|
10
|
+
## [0.1.1](https://github.com/bottrall/riffer-rig/compare/v0.1.0...v0.1.1) (2026-09-07)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* ship the openai SDK so OpenAI and OpenRouter models work ([#145](https://github.com/bottrall/riffer-rig/issues/145)) ([92aba9b](https://github.com/bottrall/riffer-rig/commit/92aba9bb3b8fe097e90bb9375465636fac37afef))
|
|
16
|
+
|
|
3
17
|
## 0.1.0 (2026-09-05)
|
|
4
18
|
|
|
5
19
|
|
data/README.md
CHANGED
|
@@ -44,15 +44,17 @@ Create a key at https://console.anthropic.com/settings/keys.
|
|
|
44
44
|
|
|
45
45
|
Every project chore is a script in `bin/`. The Rakefile behind them is an implementation detail; you never need to call rake directly.
|
|
46
46
|
|
|
47
|
-
| Script
|
|
48
|
-
|
|
|
49
|
-
| `bin/setup`
|
|
50
|
-
| `bin/test`
|
|
51
|
-
| `bin/lint`
|
|
52
|
-
| `bin/typecheck` | Check `sig/generated` is current, then type-check with Steep
|
|
53
|
-
| `bin/rbs`
|
|
54
|
-
| `bin/rbs-watch` | Regenerate `sig/generated` whenever `lib/` changes
|
|
55
|
-
| `bin/ci`
|
|
47
|
+
| Script | What it does |
|
|
48
|
+
| --------------- | ---------------------------------------------------------------------------------------------- |
|
|
49
|
+
| `bin/setup` | Install dependencies on a fresh checkout |
|
|
50
|
+
| `bin/test` | Run the test suite. Pass files and/or Minitest flags: `bin/test test/foo_test.rb -n /pattern/` |
|
|
51
|
+
| `bin/lint` | Run RuboCop. Arguments are forwarded, e.g. `bin/lint -a` |
|
|
52
|
+
| `bin/typecheck` | Check `sig/generated` is current, then type-check with Steep |
|
|
53
|
+
| `bin/rbs` | Regenerate `sig/generated` from the inline annotations in `lib/` |
|
|
54
|
+
| `bin/rbs-watch` | Regenerate `sig/generated` whenever `lib/` changes |
|
|
55
|
+
| `bin/ci` | Run everything CI runs, serially. Use before pushing |
|
|
56
|
+
| `bin/build` | Build the gem into `pkg/`; the publish workflow runs this before `gem push` |
|
|
57
|
+
| `bin/plans` | Serve the building plans in `plans/` at http://localhost:8001 |
|
|
56
58
|
|
|
57
59
|
## Releasing
|
|
58
60
|
|
data/lib/riffer/rig/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riffer-rig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Bottrall
|
|
@@ -37,6 +37,20 @@ dependencies:
|
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '0.2'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: openai
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0.80'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0.80'
|
|
40
54
|
- !ruby/object:Gem::Dependency
|
|
41
55
|
name: riffer
|
|
42
56
|
requirement: !ruby/object:Gem::Requirement
|