Sha256: 7a4c5bb9e9f97a4899d55ea810395b65c773fd5bca8fd036d08da4179818aaf6
Contents?: true
Size: 606 Bytes
Versions: 2
Compression:
Stored size: 606 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) # Setup bundler correctly ENV['BUNDLE_GEMFILE'] ||= File.join(root_dir, "Gemfile") require 'bundler/setup' require 'buildbox' Buildbox.logger.level = Logger::DEBUG if ENV['DEBUG'] == 'true' Buildbox::CLI.new(ARGV).parse
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
buildbox-0.3.5 | bin/buildbox |
buildbox-0.3.4 | bin/buildbox |