vagrant/plugins/kernel_v2/config/package.rb

14 lines
203 B
Ruby
Raw Normal View History

2012-11-07 05:28:44 +00:00
require "vagrant"
module VagrantPlugins
module Kernel_V2
class PackageConfig < Vagrant.plugin("2", :config)
attr_accessor :name
def to_s
"Package"
end
2012-11-07 05:28:44 +00:00
end
end
end