vagrant-hostmanager/lib/vagrant-hostmanager.rb

15 lines
361 B
Ruby
Raw Normal View History

require 'vagrant-hostmanager/plugin'
require 'vagrant-hostmanager/version'
require 'vagrant-hostmanager/errors'
module VagrantPlugins
module HostManager
def self.source_root
@source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
end
I18n.load_path << File.expand_path('locales/en.yml', source_root)
I18n.reload!
end
end