Files
Brooke Kuhlmann 80ff29343a Added project skeleton
Necessary to provide initial scaffolding for this project. This was generated using link:https://alchemists.io/projects/rubysmith[Rubysmith]. While this isn't a Ruby project since the core implementation is in C, having the Ruby tooling will help from a CI and code quality perspective.
2026-02-23 10:00:38 -07:00

17 lines
387 B
Ruby
Executable File

#! /usr/bin/env ruby
# frozen_string_literal: true
require "debug"
require "fileutils"
APP_ROOT = Pathname(__dir__).join("..").expand_path
Runner = lambda do |*arguments, kernel: Kernel|
kernel.system(*arguments) || kernel.abort("\nERROR: Command #{arguments.inspect} failed.")
end
FileUtils.chdir APP_ROOT do
puts "Installing dependencies..."
Runner.call "bundle install"
end