class LicenseFinder::CocoaPods

def license_texts

def license_texts
  # package name => license text
  @license_texts ||= read_plist(acknowledgements_path)['PreferenceSpecifiers']
                     .each_with_object({}) { |hash, memo| memo[hash['Title']] = hash['FooterText'] }
end