{"id":34594716,"url":"https://github.com/bcylin/cocoapods-acknowledgements-addons","last_synced_at":"2025-12-24T11:27:44.927Z","repository":{"id":34878957,"uuid":"186119603","full_name":"bcylin/cocoapods-acknowledgements-addons","owner":"bcylin","description":"A CocoaPods plugin that adds additional acknowledgements to the plist generated by cocoapods-acknowledgements.","archived":false,"fork":false,"pushed_at":"2025-10-01T13:01:10.000Z","size":199,"stargazers_count":3,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T23:14:04.144Z","etag":null,"topics":["acknowledgements","carthage","cocoapods","cocoapods-plugin","ios","swift-package-manager"],"latest_commit_sha":null,"homepage":"https://www.rubydoc.info/gems/cocoapods-acknowledgements-addons","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bcylin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-11T10:35:01.000Z","updated_at":"2025-03-13T22:39:29.000Z","dependencies_parsed_at":"2023-09-27T00:08:31.867Z","dependency_job_id":"61c8baec-fece-44bd-9c20-545ff2a1162e","html_url":"https://github.com/bcylin/cocoapods-acknowledgements-addons","commit_stats":{"total_commits":83,"total_committers":6,"mean_commits":"13.833333333333334","dds":"0.32530120481927716","last_synced_commit":"a9cb0cab511c94ce45278eb7a660f87d7e44a9bd"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/bcylin/cocoapods-acknowledgements-addons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2Fcocoapods-acknowledgements-addons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2Fcocoapods-acknowledgements-addons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2Fcocoapods-acknowledgements-addons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2Fcocoapods-acknowledgements-addons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bcylin","download_url":"https://codeload.github.com/bcylin/cocoapods-acknowledgements-addons/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2Fcocoapods-acknowledgements-addons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28001704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acknowledgements","carthage","cocoapods","cocoapods-plugin","ios","swift-package-manager"],"created_at":"2025-12-24T11:27:43.427Z","updated_at":"2025-12-24T11:27:44.920Z","avatar_url":"https://github.com/bcylin.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CocoaPods Acknowledgements Add-ons\n\n[![GitHub Actions](https://github.com/bcylin/cocoapods-acknowledgements-addons/actions/workflows/run_tests.yml/badge.svg)](https://github.com/bcylin/cocoapods-acknowledgements-addons/actions)\n[![Gem Version](https://badge.fury.io/rb/cocoapods-acknowledgements-addons.svg)](https://rubygems.org/gems/cocoapods-acknowledgements-addons)\n\nA CocoaPods plugin that adds additional acknowledgements to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements).\n\n## Installation\n\nInstall via `gem install cocoapods-acknowledgements` or add it to the **Gemfile**:\n\n```rb\ngem \"cocoapods-acknowledgements-addons\"\n```\n\n## Prerequisites\n\n1. CocoaPods and [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements)\n2. The installed libraries provide podspec\n\n## Use cases\n\n### With Carthage / git submodules\n\nIf you have some dependencies installed via CocoaPods and some installed using different ways, such as [Carthage](https://github.com/Carthage/Carthage) or git submodules, you can aggregate the acknowledgements in one place.\n\nUse the plugin in the **Podfile**:\n\n```rb\ntarget :App do\n  pod \"CPDAcknowledgements\"\nend\n\n# Generates a plist of dependencies installed via CocoaPods\nplugin \"cocoapods-acknowledgements\"\n\n# Adds additional acknowledgements to the generated plist\nplugin \"cocoapods-acknowledgements-addons\", add: [\"Carthage/Checkouts\"]\n```\n\n### With Swift Package Manager\n\nTo find the dependencies installed via [Swift Package Manager](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) in `~/Library/Developer/Xcode/DerivedData`, specify `with_spm: true` when using the plugin:\n\n```rb\nplugin \"cocoapods-acknowledgements-addons\", add: [\"Carthage/Checkouts\"], with_spm: true\n```\n\n## What's modified?\n\nThe plugin searches `**/*.podspec` located in the specified directories and adds the acknowledgements to the plist generated by [cocoapods-acknowledgements](https://github.com/CocoaPods/cocoapods-acknowledgements), which can be found in the `Pods` directory:\n\n```\n.\n├── App.xcodeproj\n├── App.xcworkspace\n├── Podfile\n├── Podfile.lock\n└── Pods\n    └── Pods-{target_name}-metadata.plist\n```\n\nThis plugin also updates the app's `Settings.bundle/Pods-{target_name}-settings-metadata.plist` if it exists.\n\nCheck out the [example app](https://github.com/bcylin/cocoapods-acknowledgements-addons/tree/master/example) for the configuration to use with [CPDAcknowledgements](https://github.com/CocoaPods/CPDAcknowledgements).\n\n## Pod Commands\n\n### Search: List all podspecs found in $PATHS\n\n```sh\npod acknowledgements search $PATHS\n```\n\nUsage:\n\n1. without options\n\n```sh\n$ bundle exec pod acknowledgements search example\n\n./Carthage/Checkouts/QuickTableViewController/QuickTableViewController.podspec\n./Carthage/Checkouts/Alamofire/Alamofire.podspec\n./Acknowledgements/Crypto/Crypto.podspec\n```\n\n2. with `--swift-packages`\n\n```sh\n$ bundle exec pod acknowledgements search --swift-packages example/App.xcodeproj\n\n~/Library/Developer/Xcode/DerivedData/App-djdfchmfsxwuuqbfczwmhygyunnk/SourcePackages/checkouts/CwlCatchException/CwlCatchException.podspec\n~/Library/Developer/Xcode/DerivedData/App-djdfchmfsxwuuqbfczwmhygyunnk/SourcePackages/checkouts/Quick/Quick.podspec\n~/Library/Developer/Xcode/DerivedData/App-djdfchmfsxwuuqbfczwmhygyunnk/SourcePackages/checkouts/CwlPreconditionTesting/CwlPreconditionTesting.podspec\n~/Library/Developer/Xcode/DerivedData/App-djdfchmfsxwuuqbfczwmhygyunnk/SourcePackages/checkouts/Nimble/Nimble.podspec\n```\n\n## License\n\nReleased under the [MIT License](https://github.com/bcylin/cocoapods-acknowledgements-addons/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcylin%2Fcocoapods-acknowledgements-addons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbcylin%2Fcocoapods-acknowledgements-addons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcylin%2Fcocoapods-acknowledgements-addons/lists"}