main
1# frozen_string_literal: true
2
3require "bundler/gem_tasks"
4
5desc "Build the in-process llama.cpp extension (the same build `gem install` runs)"
6task :compile do
7 ruby "ext/elelem/llama/extconf.rb"
8end
9
10task default: %i[]