Sha256: cc94168288e3033714d539e2a31bf5a7db3d7a6b22addd40526aa0c62fe8b26b

Contents?: true

Size: 1.44 KB

Versions: 19

Compression:

Stored size: 1.44 KB

Contents

require 'pathname'
require 'json'
require 'i18n'
require 'virtualbox'

# OpenSSL must be loaded here since when it is loaded via `autoload`
# there are issues with ciphers not being properly loaded.
require 'openssl'

module Vagrant
  autoload :Action,        'vagrant/action'
  autoload :Box,           'vagrant/box'
  autoload :BoxCollection, 'vagrant/box_collection'
  autoload :CLI,           'vagrant/cli'
  autoload :Config,        'vagrant/config'
  autoload :DataStore,     'vagrant/data_store'
  autoload :Downloaders,   'vagrant/downloaders'
  autoload :Environment,   'vagrant/environment'
  autoload :Errors,        'vagrant/errors'
  autoload :Hosts,         'vagrant/hosts'
  autoload :Plugin,        'vagrant/plugin'
  autoload :SSH,           'vagrant/ssh'
  autoload :TestHelpers,   'vagrant/test_helpers'
  autoload :UI,            'vagrant/ui'
  autoload :Util,          'vagrant/util'
  autoload :VM,            'vagrant/vm'

  # The source root is the path to the root directory of
  # the Vagrant gem.
  def self.source_root
    @source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
  end
end

# # Default I18n to load the en locale
I18n.load_path << File.expand_path("templates/locales/en.yml", Vagrant.source_root)

# Load the things which must be loaded before anything else.
require 'vagrant/command'
require 'vagrant/provisioners'
require 'vagrant/systems'
require 'vagrant/version'
Vagrant::Action.builtin!
Vagrant::Plugin.load!

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
vagrantup-0.8.9 lib/vagrant.rb
vagrantup-0.8.8 lib/vagrant.rb
vagrantup-0.8.7 lib/vagrant.rb
vagrantup-0.8.6 lib/vagrant.rb
vagrantup-0.8.5 lib/vagrant.rb
vagrantup-0.8.4 lib/vagrant.rb
vagrantup-0.8.3 lib/vagrant.rb
vagrantup-0.8.2 lib/vagrant.rb
vagrantup-0.8.10 lib/vagrant.rb
vagrantup-0.8.1 lib/vagrant.rb
vagrantup-0.8.0 lib/vagrant.rb
vagrant-0.8.10 lib/vagrant.rb
vagrant-0.8.8 lib/vagrant.rb
vagrant-0.8.7 lib/vagrant.rb
rvagrant-0.8.7.dev lib/vagrant.rb
vagrant-0.8.6 lib/vagrant.rb
vagrant-0.8.5 lib/vagrant.rb
vagrant-0.8.2 lib/vagrant.rb
vagrant-0.8.1 lib/vagrant.rb