diff options
| author | realtradam <[email protected]> | 2022-04-21 07:55:45 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-04-21 07:55:45 -0400 |
| commit | 8c0569bf34405dfdf0968b26f33dd70976866943 (patch) | |
| tree | 321cc6e1b0840b0eebf84523dcd6486cabaab3c6 /bin | |
| download | Justicar-8c0569bf34405dfdf0968b26f33dd70976866943.tar.gz Justicar-8c0569bf34405dfdf0968b26f33dd70976866943.zip | |
initv0.1.0
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/console | 15 | ||||
| -rwxr-xr-x | bin/setup | 8 |
2 files changed, 23 insertions, 0 deletions
diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..b8004c6 --- /dev/null +++ b/bin/console @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" +require "Justicar" + +# 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. + +# (If you use this, don't forget to add pry to your Gemfile!) +# require "pry" +# Pry.start + +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 |
