diff options
| author | mo khan <mo.khan@gmail.com> | 2020-12-21 16:34:20 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-12-21 16:34:20 -0700 |
| commit | 9d509199b72b79b3c0e600b3b59150c4f7a987f0 (patch) | |
| tree | e6448f9353dc5a21a5fd29437c8ff70679b64147 | |
| parent | 795122a46ebe0d80069344558e737093f5d2474e (diff) | |
chore: add ./bin/console script
| -rwxr-xr-x | bin/console | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..e5f3e2e --- /dev/null +++ b/bin/console @@ -0,0 +1,8 @@ +#!/usr/bin/env ruby +$LOAD_PATH.unshift(File.expand_path("lib")) + +require 'bundler/setup' +require 'server' +require 'irb' + +IRB.start(__FILE__) |
