Sha256: 8b580b641e39f6f0d7cc097c11a09f14b925b46bf8cae3a0fe5eed18ddb77829

Contents?: true

Size: 505 Bytes

Versions: 2

Compression:

Stored size: 505 Bytes

Contents

begin
  require "vagrant"
rescue LoadError
  raise "This is a vagrant plugin, do not use standalone."
end

if Vagrant::VERSION < "1.2.0"
  raise "This vagrant plugin needs vagrant 1.2.0+"
end

require_relative 'config'
require_relative 'version'

module VagrantPlugins
  module Bib
    module Vagrant
      class Plugin < ::Vagrant.plugin("2")

        name "bib-vagrant"
        description <<-DESC
        This is a fake plugin to get bib::vagrant into vagrant
        DESC

      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bib-vagrant-0.1.2 lib/bib/vagrant/plugin.rb
bib-vagrant-0.1.1 lib/bib/vagrant/plugin.rb