Sha256: dacc223c44860742411f5151d85903bfbd8aea2fa376d35310aef55ec69c5b05

Contents?: true

Size: 524 Bytes

Versions: 1

Compression:

Stored size: 524 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")

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

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bib-vagrant-0.1.0 lib/bib/vagrant/plugin.rb