Plist::PTag
# File lib/plist/parser.rb, line 212 def to_ruby data = Base64.decode64(text.gsub(%r\s+/, '')) begin return Marshal.load(data) rescue Exception => e io = StringIO.new io.write data io.rewind return io end end