15 lines
361 B
Ruby
15 lines
361 B
Ruby
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
|