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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f73a840a836511a6fae8b5c7d6e74ec91fbcb538512db64ad08e9fe75968941
4
- data.tar.gz: c8d503c5bc6a363be2b4d940441436c865a760b88919ada174672e2422a20904
3
+ metadata.gz: 761f180d04e8bab840732d6649617fd6f7196406f0bc54c3f849d253dacefe9a
4
+ data.tar.gz: 1f352b9cc7e0f663e13580216262ddc5db9af8ffafefd0b5e0bfd9d062ad19e4
5
5
  SHA512:
6
- metadata.gz: 43cdadee5554656753dd5d2e46bae4456df480844d30e7119d4e45b5647395236cb1acc5209aa9fbfec5da501888f04221d21ddbd49925183edef56daca4b3f7
7
- data.tar.gz: d05268fab46137782a580f18a134105c48aae93b50d1249936c6b76fe7ba056bf3f08bd23ba6d15a4a75fb80b02dfefd5aad98fdac54fbb51f433aa4e41a844d
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 | 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 |
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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Riffer
4
4
  module Rig
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
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.0
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