git tag -a v1.4 -m "my version 1.4"
git push --tags
# remote
git push --delete origin tagname
# local
git tag --delete tagname
find help: https://guides.cocoapods.org
# locally
pod lib lint
# remote check
pod spec lint
quinn the eskimo knows his stuff:
# background modes overview
https://www.raywenderlich.com/143128/background-modes-tutorial-getting-started
# nsurlsession overview
https://www.raywenderlich.com/158106/urlsession-tutorial-getting-started
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rename a given *.extension | |
find . -name '*.aif' -exec sh -c 'mv "$0" "${0%.aif}.aiff"' {} \; |