Last active
August 29, 2015 14:14
Revisions
-
mps revised this gist
Jan 29, 2015 . 1 changed file with 4 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,11 +8,6 @@ # # Let me know what you think via @strickland on Twitter. desc 'Open up the project' task :open do #... @@ -43,3 +38,7 @@ task :test do #... end desc 'Send a build of your App to TestFlight' task :testflight do #... end -
mps created this gist
Jan 29, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ # Rakefiles are a great way to automate your life # # Below are some example tasks I use each day in my # iOS development. # # Do not get caught up in the missing implementation, but # just take in the simplicity of each task as a time saving element. # # Let me know what you think via @strickland on Twitter. desc 'Send a build of your App to TestFlight' task :testflight do #... end desc 'Open up the project' task :open do #... end desc 'Push to origin and create a pull request on GitHub' task :pr do #... end desc "Rev the build's version" task :rev do #... end desc "Run setup steps for first time use" task :setup do #... end desc "Call your morning standup meeting" task :standup do #... end desc "Run your test suite" task :test do #... end