module Plist

Public Class Methods

parse_binary_xml(filename) click to toggle source
# File lib/fastlane/plugin/test_center/helper/xctestrun_info.rb, line 38
def self.parse_binary_xml(filename)
  `plutil -convert xml1 \"#{filename}\"`
  Plist.parse_xml(filename)
end