Sha256: 4b265fee7ece850fb5e43c43b34935cab1801963635be6b1be55212799bb472f
Contents?: true
Size: 682 Bytes
Versions: 62
Compression:
Stored size: 682 Bytes
Contents
require "vagrant" module VagrantPlugins module LocalExecPush class Plugin < Vagrant.plugin("2") name "local-exec" description <<-DESC Run a local command or script to push DESC config(:"local-exec", :push) do require File.expand_path("../config", __FILE__) init! Config end push(:"local-exec") do require File.expand_path("../push", __FILE__) init! Push end protected def self.init! return if defined?(@_init) I18n.load_path << File.expand_path("../locales/en.yml", __FILE__) I18n.reload! @_init = true end end end end
Version data entries
62 entries across 55 versions & 7 rubygems