diff options
author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-11-13 11:19:20 -0500 |
---|---|---|
committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-11-13 11:19:20 -0500 |
commit | 5a2364e50620b825d5325bfbbc5d0f3d8578e25f (patch) | |
tree | 0e985374cc7b4bd8111c012072c39218335881ef /bin | |
parent | 1400b842f6dc61e662ce15f72f578a55126ffc06 (diff) | |
parent | f2da63369fcb754e3715091cc4fd2f93db42106e (diff) |
Merge pull request #2 from Shopify/testing-refactoring
Testing refactoring
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/console | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..0419027 --- /dev/null +++ b/bin/console @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby + +lib = File.expand_path('../../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) + +require 'oxidized' +require 'pry' + +Pry.start |