class LicenseFinder::CocoaPods

def read_plist(pathname)

def read_plist(pathname)
  out, err, status = Open3.capture3('plutil', '-convert', 'json', '-o', '-', pathname)
  raise "#{out}\n\n#{err}" unless status.success?
  JSON.parse(out)
end