summaryrefslogtreecommitdiff
path: root/lib/plist/generator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plist/generator.rb')
-rw-r--r--lib/plist/generator.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/plist/generator.rb b/lib/plist/generator.rb
index 57fb179..c44c979 100644
--- a/lib/plist/generator.rb
+++ b/lib/plist/generator.rb
@@ -28,7 +28,7 @@
# Hash
#
# Notes:
-#
+#
# + Array and Hash are recursive -- the elements of an Array and the values of a Hash
# must convert to a plist.
# + The keys of the Hash must be strings.
@@ -36,7 +36,7 @@
# + Data elements can be set with to an open IO or a StringIO
#
# If you have suggestions for mapping other Ruby types to the plist types, send a note to:
-#
+#
# mailto:plist@hexane.org
#
# I'll take a look and probably add it, I'm just reticent to create too many
@@ -158,12 +158,12 @@ require 'stringio'
def to_plist_fragment
self.rewind
data = self.read
-
+
output = "<data>\n"
Base64::encode64(data).gsub(/\s+/, '').scan(/.{1,68}/o) { output << $& << "\n" }
output << "</data>"
-
+
output
end
end
-end \ No newline at end of file
+end