Sha256: 977e64a14f011ba8beca45e9ed64e22464ba3553472c7ef706680694a95330e6
Contents?: true
Size: 577 Bytes
Versions: 59
Compression:
Stored size: 577 Bytes
Contents
require 'vagrant' module PEBuild require 'pe_build/plugin' require 'pe_build/version' WORK_DIR = '.pe_build' # Return the path to the archived PE builds # # @param env [Vagrant::Environment] def self.archive_directory(env) File.expand_path('pe_builds', env.home_path) end def self.source_root File.expand_path('..', File.dirname(__FILE__)) end def self.template_dir File.expand_path('templates', source_root) end end # I18n to load the en locale I18n.load_path << File.expand_path("locales/en.yml", PEBuild.template_dir) I18n.reload!
Version data entries
59 entries across 59 versions & 1 rubygems