Nomad changes
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s

This commit is contained in:
Henrik Jess Nielsen
2026-06-01 23:40:55 +02:00
parent 72b1a0a6ed
commit b4c07d3693
5723 changed files with 1130655 additions and 0 deletions

14
packages/ruby/Steepfile generated Normal file
View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
target :lib do
signature "sig"
check "lib"
# The generated `lib/kreuzberg/native.rb` carries inline Sorbet
# `sig { ... }` blocks on tagged-enum variant Data classes. Sorbet's runtime
# provides those via `extend T::Sig`, but Steep does not understand the
# extension (it relies on RBS, not Sorbet sigs) and reports
# `Type `self` does not have method `sig`` on every block. RBS coverage
# for the same surface lives in `sig/types.rbs`, so we steer Steep to the
# RBS file by ignoring the .rb.
ignore "lib/kreuzberg/native.rb"
end