Commit 6dc9a58

mo khan <mo@mokhan.ca>
2025-10-08 16:57:03
chore: add scripts to rule them all
1 parent 9a291e7
bin/setup
@@ -1,8 +1,8 @@
-#!/usr/bin/env bash
-set -euo pipefail
-IFS=$'\n\t'
-set -vx
+#!/bin/sh
 
-bundle install
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
 
-# Do any other automated setup that you need to do here
+bundle install
bin/shipit
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
+
+bundle exec rake release
bin/test
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+[ -z "$DEBUG" ] || set -x
+
+cd "$(dirname "$0")/.."
+
+bundle exec rspec
Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    net-llm (0.2.0)
+    net-llm (0.3.0)
       json (~> 2.0)
       net-http (~> 0.6)
       uri (~> 1.0)