Sha256: 5486a11c1bb84548895233027a6981971e690637df2b068964c951e9302bc7ff
Contents?: true
Size: 1010 Bytes
Versions: 1
Compression:
Stored size: 1010 Bytes
Contents
require 'pathname' require 'logger' module Buildbox autoload :API, "buildbox/api" autoload :Build, "buildbox/build" autoload :Command, "buildbox/command" autoload :CLI, "buildbox/cli" autoload :Configuration, "buildbox/configuration" autoload :Monitor, "buildbox/monitor" autoload :Runner, "buildbox/runner" autoload :Script, "buildbox/script" autoload :Server, "buildbox/server" autoload :UTF8, "buildbox/utf8" autoload :Agent, "buildbox/agent" autoload :VERSION, "buildbox/version" def self.config @config ||= Configuration.new.tap(&:reload) end def self.logger @logger ||= Logger.new(STDOUT).tap { |logger| logger.level = Logger::INFO } end def self.gem_root path = File.expand_path(File.join(__FILE__, "..", "..")) end def self.root_path path = Pathname.new File.join(ENV['HOME'], ".buildbox") path.mkpath unless path.exist? Pathname.new(path) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildbox-0.2.3 | lib/buildbox.rb |