Sha256: e7d0dedf36c6f89097761880ad5d5b4250f3ffe42d967c98cf8a11a7999bcf28

Contents?: true

Size: 680 Bytes

Versions: 62

Compression:

Stored size: 680 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module AtlasPush
    autoload :Errors, File.expand_path("../errors", __FILE__)

    class Plugin < Vagrant.plugin("2")
      name "atlas"
      description <<-DESC
      Deploy using HashiCorp's Atlas service.
      DESC

      config(:atlas, :push) do
        require_relative "config"
        init!
        Config
      end

      push(:atlas) do
        require_relative "push"
        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

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/pushes/atlas/plugin.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/pushes/atlas/plugin.rb