Sha256: baef9a0ef52d1ccaf11f3853a1473491984c721d6e76549e7d4df0cce2471c36
Contents?: true
Size: 632 Bytes
Versions: 52
Compression:
Stored size: 632 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'gli' # Define GoodData::CLI as GLI Wrapper module GoodData module CLI # Require shared part of GLI::App - flags, meta, etc require_relative 'shared.rb' # Require Hooks require_relative 'hooks.rb' commands_from(File.join(File.dirname(__FILE__), 'commands')) def self.main(args = ARGV) run(args) end end end GoodData::CLI.main(ARGV) if __FILE__ == $PROGRAM_NAME
Version data entries
52 entries across 52 versions & 1 rubygems