chore: remove Ruby implementation and tooling

This commit is contained in:
Micheal Wilkinson
2026-03-19 16:17:54 +00:00
parent 8174c6a983
commit 8d34674415
24 changed files with 72 additions and 2164 deletions

View File

@@ -1,9 +1,11 @@
#!/usr/bin/env ruby
#!/usr/bin/env bash
set -euo pipefail
require 'pathname'
lib = Pathname.new(__FILE__).dirname.join('..', 'lib').expand_path
$LOAD_PATH.unshift lib.to_s
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
repo_root="$(cd "$script_dir/.." && pwd)"
require 'homesick'
if [[ -x "$repo_root/dist/homesick-go" ]]; then
exec "$repo_root/dist/homesick-go" "$@"
fi
Homesick::CLI.start
exec go run "$repo_root/cmd/homesick" "$@"