Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-ruby-release.reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: BAML Release - Build Ruby
on:
workflow_call: {}
push:
branches: [aaron-fix]
branches: [bump-ruby]

permissions:
contents: read
Expand Down
18 changes: 12 additions & 6 deletions engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion engine/language_client_ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gemspec
gem "rake", "~> 13.0"
gem "rake-compiler", "~> 1.2"
# Must be kept in sync with Cargo.toml
gem "rb_sys", "=0.9.98"
gem "rb_sys", "=0.9.111"

group :test do
gem "async"
Expand Down
8 changes: 5 additions & 3 deletions engine/language_client_ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
baml (0.84.3)
baml (0.84.4)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -32,7 +32,9 @@ GEM
rake (13.2.1)
rake-compiler (1.2.7)
rake
rb_sys (0.9.98)
rake-compiler-dock (1.9.1)
rb_sys (0.9.111)
rake-compiler-dock (= 1.9.1)
ruby-progressbar (1.13.0)
safe_type (1.1.1)
sorbet-coerce (0.7.0)
Expand All @@ -53,7 +55,7 @@ DEPENDENCIES
minitest-reporters
rake (~> 13.0)
rake-compiler (~> 1.2)
rb_sys (= 0.9.98)
rb_sys (= 0.9.111)
sorbet-coerce
sorbet-runtime
sorbet-struct-comparable
Expand Down
4 changes: 2 additions & 2 deletions engine/language_client_ruby/ext/ruby_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jsonish = { path = "../../../baml-lib/jsonish" }
log.workspace = true
magnus = { version = "0.7.1", features = ["rb-sys"] }
# Must be kept in sync with ../../Gemfile
rb-sys = { version = "0.9.99", features = [
rb-sys = { version = "0.9.111", features = [
"global-allocator",
"bindgen-rbimpls",
"bindgen-deprecated-types",
Expand All @@ -44,4 +44,4 @@ version = "0.7.1"
features = ["rb-sys", "embed"]

[build-dependencies]
rb-sys-env = { version = "0.1" }
rb-sys-env = { version = "0.2.2" }
Loading