40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
require 'json'
|
|
require 'virtualbox'
|
|
require "vagrant/util/glob_loader"
|
|
|
|
module Vagrant
|
|
class << self
|
|
attr_writer :ui
|
|
|
|
# The source root is the path to the root directory of
|
|
# the Vagrant gem.
|
|
def source_root
|
|
@source_root ||= File.expand_path('../../', __FILE__)
|
|
end
|
|
|
|
# Returns the {UI} class to use for talking with the
|
|
# outside world.
|
|
def ui
|
|
@ui ||= UI.new
|
|
end
|
|
end
|
|
|
|
class VagrantError < StandardError
|
|
def self.status_code(code = nil)
|
|
define_method(:status_code) { code }
|
|
end
|
|
end
|
|
|
|
class CLIMissingEnvironment < VagrantError; status_code(1); end
|
|
end
|
|
|
|
# Load them up. One day we'll convert this to autoloads. Today
|
|
# is not that day. Low hanging fruit for anyone wishing to do it.
|
|
libdir = File.expand_path("lib/vagrant", Vagrant.source_root)
|
|
Vagrant::GlobLoader.glob_require(libdir, %w{util util/stacked_proc_runner
|
|
downloaders/base config provisioners/base provisioners/chef systems/base
|
|
commands/base commands/box action/exception_catcher hosts/base})
|
|
|
|
# Initialize the built-in actions
|
|
Vagrant::Action.builtin!
|