diff options
| author | Adam Malczewski <[email protected]> | 2026-03-31 00:52:33 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-31 00:52:33 +0900 |
| commit | 25488d32336e05b69a41391cc7b5153478d3cc8a (patch) | |
| tree | 3570cccc44766d7268457adeff79f16f855c0d9f /bin | |
| download | dispatch-tool-files-25488d32336e05b69a41391cc7b5153478d3cc8a.tar.gz dispatch-tool-files-25488d32336e05b69a41391cc7b5153478d3cc8a.zip | |
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/console | 11 | ||||
| -rwxr-xr-x | bin/setup | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..9df5b5f --- /dev/null +++ b/bin/console @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" +require "dispatch/tool/files" + +# You can add fixtures and/or initialization code here to make experimenting +# with your gem easier. You can also use a different console, if you like. + +require "irb" +IRB.start(__FILE__) diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..dce67d8 --- /dev/null +++ b/bin/setup @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' +set -vx + +bundle install + +# Do any other automated setup that you need to do here |
