puppet-standalone-mashup/shared/lib/puppet/type/gem.rb

19 lines
256 B
Ruby
Raw Normal View History

Puppet::Type.newtype(:gem) do
@doc = 'A Ruby Gem'
ensurable
newparam(:name) do
desc "The name of the gem"
end
newparam(:version) do
desc "The version of the gem"
end
newparam(:path) do
desc "The binary search path"
end
end