Posts tagged rake

Posts tagged rake
12 notes &
Continuing my quest for automating everything via the command line I present to you:
I extracted the build tasks I use on iOS apps into a handy library and dsl you can use in your own Rakefile. This will let you set up rake tasks to build your app, create ipa files and publish to testflight.
Looks something like this:
$ rake -T
rake build:debug # Build angry_turds 0.1 with Debug configuration
rake build:release # Build angry_turds 0.1 with Release configuration
rake info:configurations # List available configurations
rake info:sdks # List available sdks
rake ipa:adhoc # Creates build/angry_turds-0.1-release-adhoc.ipa
rake ipa:app_store # Creates build/angry_turds-0.1-release-app_store.ipa
rake testflight:publish # Publishes build/angry_turds-0.1-release-adhoc.ipa to testflight
Along with wod we’ll make sure you never have to click through silly web pages again!
For install and usage instructions see the README over on github