Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brynbellomy/objc-cli-utils
command line (i.e. terminal) helper scripts for using CocoaPods, avoiding xcode, etc
https://github.com/brynbellomy/objc-cli-utils
Last synced: about 1 month ago
JSON representation
command line (i.e. terminal) helper scripts for using CocoaPods, avoiding xcode, etc
- Host: GitHub
- URL: https://github.com/brynbellomy/objc-cli-utils
- Owner: brynbellomy
- License: wtfpl
- Created: 2012-08-11T09:57:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-12T14:38:34.000Z (about 12 years ago)
- Last Synced: 2024-04-17T00:55:58.719Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# // objective-c cli utils
because writing bash scripts requires less therapy than fucking with xcode.
# manifest
- **auto-headerdoc-objc.js**:
i think i fed this one data via an os x automator service so that i could just highlight everything in any text editor, activate the service, and ta-da, there were a bunch of boilerplate headerdoc/appledoc-ready comments.
- **clean-global-pod-cache**:
this is for working with cocoapods. it wipes the global cache of downloaded pods in the event that you're doing a lot of rapid local pod development and are having to change your podspec(s) around a lot.
- **clean-pods**:
run this from inside a folder containing your `.xcodeproj` file. it'll wipe the `Pods/` folder and `Podfile.lock`. after this, just run `pod install` and pray.
- **objc-gitignore**:
downloads [this gist](https://gist.github.com/3288122) and appends (i.e. **non-destructively**) it to the `.gitignore` file in the current folder.# how to install
```bash
mkdir -p ~/src
git clone git://github.com/brynbellomy/objc-cli-utils.git ~/src/objc-cli-utils
for file in ~/src/objc-cli-utils
do
ln -s ~/src/objc-cli-utils/`basename "$file"` /usr/local/bin/`basename "$file"`
done
```... or something like that. god i hate bash. but man oh man, i hate xcode ~so~ much more.
# authors
bryn austin bellomy < >
# license
MIT. after all, xcode 4.x.x makes me feel deeply for humanity. here's your advance warning: scripts do things. so if you wipe out important shit, don't get in touch.