Sha256: 9dbb47d4fd6fcfddfb945f6a252f1e3d6dd0e946cec0b5a2a7ce05241d92199b
Contents?: true
Size: 498 Bytes
Versions: 15
Compression:
Stored size: 498 Bytes
Contents
#!/usr/bin/env ruby # Disable stdout,stderr buffering STDERR.sync = STDOUT.sync = true # Set the process name before we go to far in $PROGRAM_NAME = 'buildbox' # Add the buildbox lib directory to the load path root_dir = File.expand_path(File.join(File.dirname(__FILE__), '..')) lib_dir = File.join(root_dir, 'lib') $LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir) require 'buildbox' Buildbox.logger.level = Logger::DEBUG if ENV['DEBUG'] == 'true' Buildbox::CLI.new(ARGV).parse
Version data entries
15 entries across 15 versions & 1 rubygems