2013-03-27 19:29:21 +00:00
|
|
|
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
|
2013-04-08 17:20:22 +00:00
|
|
|
|
|
|
|
I18n.load_path << File.expand_path('locales/en.yml', source_root)
|
|
|
|
I18n.reload!
|
2013-03-27 19:29:21 +00:00
|
|
|
end
|
|
|
|
end
|