From 774930c4a5cde44924439f679d4372abfb8d3675 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 23 Feb 2014 22:18:26 +0100 Subject: [PATCH] Prepare the CLI for the evolution. --- bin/qasim-cli.rb | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/bin/qasim-cli.rb b/bin/qasim-cli.rb index 64e10c6..606e37b 100755 --- a/bin/qasim-cli.rb +++ b/bin/qasim-cli.rb @@ -3,9 +3,23 @@ $DEBUG = true $VERBOSE = true +QASIM_INCLUDE_DIR = "lib" +QASIM_DATA_DIR = "." + +$:.push QASIM_INCLUDE_DIR +p $:.inspect + +# +# external libraries +# +require 'bundler/setup' require 'pp' -require 'qasim/config' -require 'qasim/map' +#require 'thor' + +# +# project libraries +# +require 'qasim' module Qasim