diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-10-16 01:01:35 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-10-16 01:01:35 +0000 |
| commit | c48f68c79a76b2c7de408ee2e98d2f03d468f8a2 (patch) | |
| tree | 470321ee25ba2ab917aba2bc3e545159c3f92168 /lib/puppet/util/plist.rb | |
| parent | 9bd5593b98b7de2bb5293439abde7200d9f97412 (diff) | |
| download | puppet-c48f68c79a76b2c7de408ee2e98d2f03d468f8a2.tar.gz puppet-c48f68c79a76b2c7de408ee2e98d2f03d468f8a2.tar.xz puppet-c48f68c79a76b2c7de408ee2e98d2f03d468f8a2.zip | |
Adding patch from Jeff McCune, #317
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1781 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/util/plist.rb')
| -rw-r--r-- | lib/puppet/util/plist.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/puppet/util/plist.rb b/lib/puppet/util/plist.rb new file mode 100644 index 000000000..d7b07a0ec --- /dev/null +++ b/lib/puppet/util/plist.rb @@ -0,0 +1,24 @@ +#-- +############################################################## +# Copyright 2006, Ben Bleything <ben@bleything.net> and # +# Patrick May <patrick@hexane.org> # +# # +# Distributed under the MIT license. # +############################################################## +#++ +# = Plist +# +# This is the main file for plist. Everything interesting happens in Plist and Plist::Emit. + +require 'base64' +require 'cgi' +require 'stringio' + +require 'puppet/util/plist/generator' +require 'puppet/util/plist/parser' + +module Plist + VERSION = '3.0.0' +end + +# $Id$ |
