Sha256: d9325112204441e6aa384f1d07fba756a6c9931f754fc8bc713bc890cf0111de

Contents?: true

Size: 465 Bytes

Versions: 8

Compression:

Stored size: 465 Bytes

Contents

module VagrantPlugins
  module Environments
    class Plugin < Vagrant.plugin(2)

      name 'vagrant-environments'
      description 'Vagrant plugin to config muiltiple environments (dev, test, stage, prod)'

      config :environments do
        require_relative 'config'
        Config
      end

      config :environment do
        require_relative 'environment'
        Environment
      end

     

    end # Plugin
  end # Environments
end # VagrantPlugins

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vagrant-environments-0.1.7 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.6 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.5 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.4 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.3 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.2 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.1 lib/vagrant-environments/plugin.rb
vagrant-environments-0.1.0 lib/vagrant-environments/plugin.rb