A template for new Swift Framework.
- Deployment Targets - iOS 9.0 / Mac OS X 10.10 / tvOS 9.0 / watchOS 2.0
- Xcode 10
- Swift 4.2
- Dependency Managers - CocoaPods / Carthage / Swift Package Manager
- Readme
- SwiftFormat
- Dangerfile / Gemfile / Jazzy
- Github Templates (CODE_OF_CONDUCT, CONTRIBUTING, ISSUE_TEMPLATE, PULL_REQUEST_TEMPLATE)
- TravisCI
- MIT LICENSE
- Testing Dependencies - Quick and Nimble
- Install carthage (
brew install carthage
on macOS). - Install cookiecutter (
brew install cookiecutter
on macOS).
- Run
cookiecutter -c xcode10 https://github.com/RahulKatariya/SwiftFrameworkTemplate
- Run
cookiecutter -c xcode9 https://github.com/RahulKatariya/SwiftFrameworkTemplate
For future runs you can shorten the command to cookiecutter SwiftFrameworkTemplate
.
However, if you want to use the most recent template you should still run the full command above.
This template attempts to provide you an easy setup of your framework repository with many third-party services, however some of them require additional steps such as register and authentication. Below you can find instructions in case this is the first time you set any of these:
CocoaPods
If this is the first time submitting to CocoaPods a framework named like yours, you need to register your e-mail to CocoaPods system in order to receive owner access to it. You can do so using the following command:
$ pod trunk register your@email.com --description='My Mac'
Make sure to replace your@email.com
by a valid email since the next step is to access a verification link that CocoaPods is going to send to that address.
The register process will install a token to your machine which can be read with the following command:
$ grep -A2 'trunk.cocoapods.org' ~/.netrc
machine trunk.cocoapods.org
login your@email.com
password ef9bb4c41a4459ba92645a85b3c9cd88
If you're using this template, the CocoaPods deploy commands are already in your .travis.yml
file, so all you need now is to make sure the Travis CI machines are able to use that token. In order to do it securely, we recommend to do it by setting an environment variable and not allowing its value to be displayed in build logs.
In your repository build settings on Travis, add an environment variable named COCOAPODS_TRUNK_TOKEN
with value ef9bb4c41a4459ba92645a85b3c9cd88
- replacing this value by the password you've obtained from ~/.netrc
References:
GitHub releases
In order to have the Travis CI submitting archives to the Releases tab in your framework's GitHub page, you need to adjust .travis.yml
with your personal access token.
An easy way to obtain this token is by using the travis
gem. You can install it and obtain a token with the following command, which will prompt you with a few questions and automatically modify your .travis.yml
file:
$ gem install travis && travis setup releases
Detected repository as <your github username>/<your repository name>, is this correct? |yes|
Username: <your github username>
Password for <your github username>: ************
File to Upload: <the file name you want to upload>
Deploy only from <your github username>/<your repository name>? |yes|
Encrypt API key? |yes|
If you're using this template, part of these questions are not necessary for you, and the changes to .travis.yml
will be mostly unhelpful, however among the changes you'll find this:
api_key:
secure: qtPP9xa5uU4F0TJFeYjRWISv0fdPMj6xe9TXQ/CyTXJIYwLVAZ8O1aawrE7yLY0lfKXOwV7hmgMs7sS39LudoQ6ElbT6n1tKzTNaoBRc7X2GkbZiLlXSuX+plwhvMU46evkSwNIJz1g4b5CxNdUCy4Or4eXqxyhhjv4Y4kC+TxmBC5kyrDBL6oHStiIB+VEPVjPMkml0nzb6KposkSXHTEffSyDNT4+vo+bv5QFBzUYW0l42shUmr+/biHDF6eIJjW8RePEgl0ydVhcWYedEMCulfmWgVPsJu+IkZ86M0ZPIfzlhQosMboWjcWZGv559MV6L4+cGl9ZCy4ro+Mj903yUqlm8RHELsgr/T1IpsZ2CyATWdshfnTcfEv8YgZdoNfm0qJ+77HIjPPGrFlbCfQDOlTncQWMiLAps8+iM0ijUL3mR1F79OHP+nAjdnVA+Adux/FkBRy48KJE87jNk9C6vEjP25HmXWfhI3YEBexu7Ys6W+EZeg4z/10rXFIJLMFaJJbWN/LwUmmTPpX7qIU3Rv0v+zDVwl4YvpM6UewGUuC+Db/vKSHr6o+E4n1BfolJYclFhkdzFaDockG4ijMgDLw8q4DLnF0e+eIMflLkLHKiDDNGvQWqm9UDZowQdlhhY1ig1BC+2LNzd1A/9IcRYz/oV5eHxgq3wwHT4cME=
Using this template, you can revert all changes created by travis
, but save the generated base64 512 bytes secure key from the previous step before doing so, and add it to your .travis.yml
at the corresponding spot.
References:
Some of the ideas and wording for the statements above were based on work by the Alamofire and ReactiveCocoa communities. We commend them for their efforts.
Issues and pull requests are welcome!
Rahul Katariya @rahulkatariya91
SwiftFrameworkTemplate is released under the MIT license. See LICENSE for details.