lib/gooddata/cli/cli.rb in gooddata-0.6.0.pre11 vs lib/gooddata/cli/cli.rb in gooddata-0.6.0

- old
+ new

@@ -1,17 +1,19 @@ +# encoding: UTF-8 + require 'gli' require 'pp' # Define GoodData::CLI as GLI Wrapper module GoodData module CLI include GLI::App # Require shared part of GLI::App - flags, meta, etc - require File.join(File.dirname(__FILE__), 'shared.rb') + require_relative 'shared.rb' # Require Hooks - require File.join(File.dirname(__FILE__), 'hooks.rb') + require_relative 'hooks.rb' GLI::App.commands_from(File.join(File.dirname(__FILE__), 'commands')) def self.init end \ No newline at end of file