aboutsummaryrefslogtreecommitdiffstats
path: root/plist.rb
diff options
context:
space:
mode:
Diffstat (limited to 'plist.rb')
-rwxr-xr-xplist.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/plist.rb b/plist.rb
new file mode 100755
index 0000000..71f2714
--- /dev/null
+++ b/plist.rb
@@ -0,0 +1,21 @@
+#!/usr/bin/env ruby
+#
+# = plist
+#
+# This is the main file for plist. Everything interesting happens in
+# Plist and Plist::Emit.
+#
+# Copyright 2006-2010 Ben Bleything and Patrick May
+# Distributed under the MIT License
+#
+
+require 'base64'
+require 'cgi'
+require 'stringio'
+
+require 'plist/generator'
+require 'plist/parser'
+
+module Plist
+ VERSION = '3.1.0'
+end