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

21
packages/ruby/Rakefile generated Normal file
View File

@@ -0,0 +1,21 @@
# frozen_string_literal: true
require "bundler"
Bundler::GemHelper.install_tasks name: "kreuzberg"
require "rake/extensiontask"
require "rspec/core/rake_task"
GEM_ROOT = __dir__
GEMSPEC = Gem::Specification.load(File.expand_path("kreuzberg.gemspec", GEM_ROOT))
Rake::ExtensionTask.new("kreuzberg-rb", GEMSPEC) do |ext|
ext.lib_dir = "lib"
ext.ext_dir = "ext/kreuzberg_rb/native"
ext.source_pattern = "*.{}"
ext.platform = "ruby"
end
RSpec::Core::RakeTask.new(:spec)
task spec: :compile
task default: :spec