# File lib/facter/util/plist/parser.rb, line 211 211: def to_ruby 212: data = Base64.decode64(text.gsub(/\s+/, '')) 213: 214: begin 215: return Marshal.load(data) 216: rescue Exception => e 217: io = StringIO.new 218: io.write data 219: io.rewind 220: return io 221: end 222: end