No commit activity in last 3 years
No release in over 3 years
Use Fastlane to give credit where it's rightfully due
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.104.0
>= 0
>= 0
>= 0

Runtime

< 3.0.0, >= 2.3
~> 3.0
 Project Readme

Acknowledgements fastlane plugin

Fastlane Plugin Badge Build Status Twitter: @_simonrice License

Helping developers give credit where it's rightfully due in an automated fashion!

This plugin builds on the good work done by Christophe Knage on iOS AcknowledgementGenerator in the form of a Fastlane plugin, along with adding the ability to strip unwanted markdown from license files.

By the way, Christophe if you're reading this, I owe you a drink should I ever meet you 🍻.

Getting started

1. Gather your license files

Place all of your licenses from your various dependencies in a directory (e.g., a licenses folder in your project directory). Each license file should be named after your dependency (so an Alamofire license file should be called Alamofire.license)

2. Create a settings bundle in your project

You'll see the acknowledgements in your app's settings scene, so create a settings bundle & ensure it is included in your target.

3. Add Plugin

This project is a fastlane plugin. To get started with fastlane-plugin-acknowledgements, add it to your project by running:

fastlane add_plugin acknowledgements

4. Use the plugin in the Fastfile

acknowledgements(
  settings_bundle: 'path/to/settings.bundle',
  license_path: 'path/to/licenses'
)

You can also specify a different extension for your licenses using the optional license_extension parameter:

license_extension: '.acknowledgement'

Run tests for this plugin

To run both the tests & code style validation, run

rake

To automatically fix many of the styling issues, use

rubocop -a

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting doc in the main fastlane repo.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

License

Released under the BEER-WARE License 🍺. See the LICENSE file for more information.