This RubyMotion specific gem makes it easy to include the CocoaPods acknowledgements file in your application. Simply add to your bundle file, run rake acknowledgements:generate
and each time you build your application, the CocoaPods acknowledgements file will be copied over to your Settings.bundle. This then adds an entry for your app into the system's Settings.app with an 'Acknowledgements' submenu.
Read more about the CocoaPods acknowledgement file here.
Add this line to your application's Gemfile:
gem 'motion-acknowledgements'
And then execute:
$ bundle
Or install it yourself as:
$ gem install motion-acknowledgements
If you don't have a resources/Settings.bundle
file, this gem can create one for you.
Run rake acknowledgements:generate
and a resources/Settings.bundle/Root.plist
will be created with the proper content. Feel free to edit this file, but watch out - running that rake command again will undo your changes.
motion-acknowledgements
extends your app's build process to copy over the vendor/Pods/Target Support Files/Pods-RubyMotion/Pods-RubyMotion-acknowledgements.plist
file to your compiled binary (into the Settings.bundle
file) at the end of the build process. This acknowledgements file is automatically generated by the rake pod:install
command.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request