First, thanks for taking the time to submit a pull request! These are the few notes and guidelines to keep things coherent.
- Read and abide by the Code of Conduct.
- Fork the project and clone.
- Check you have all requirements in place.
- Create your feature branch.
- Install the project dependencies for development.
- Test.
- If you have more than trivial changes (e.g. fixing typo's), then you must include a description in the CHANGELOG.md.
- Push your branch and submit a Pull Request.
We will review the changes as soon as possible.
Please use a descriptive and concise name for your feature branch. Below is a snippet to show how to create a branch with git.
git checkout -b feature/feature-nameAfter installing Xcode, Bundler, and SwiftLint run the following terminal command from the project folder to install the remaining gems to be able to run all the tests and scripts as you would on the CI:
bundle installYou can quickly run the test suite using Fastlane. From the project directly, use the following terminal command:
bundle exec fastlane testAlternatively, you can run individual tests or the suite from within Xcode.
To bump the version numbers, create the git tag, and create a GitHub release, run (replacing $NEW_VERSION with the desired new version number):
bundle exec fastlane bump_version version:$NEW_VERSIONThen update the latest release with notes on GitHub.
Lastly, submit the updated podspec to CocoaPods for release.