diff options
| author | mo khan <mo.khan@gmail.com> | 2019-10-04 20:49:36 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2019-10-04 20:49:36 -0600 |
| commit | 3e07a698442aa720d0a684a406dc674acf8ec9bc (patch) | |
| tree | 163406d121e5718c9ef65b33f21dde128b7f82a6 /bin/console | |
initial commit
Diffstat (limited to 'bin/console')
| -rwxr-xr-x | bin/console | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..fa0b2f5 --- /dev/null +++ b/bin/console @@ -0,0 +1,14 @@ +#!/usr/bin/env ruby + +require "bundler/setup" +require "spandx" + +# 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__) |
