Skip to content

Instantly share code, notes, and snippets.

@mps
Last active August 29, 2015 14:14
Show Gist options
  • Save mps/844ad15723edad54dc8b to your computer and use it in GitHub Desktop.
Save mps/844ad15723edad54dc8b to your computer and use it in GitHub Desktop.
Automate Everything
# 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 '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
desc 'Send a build of your App to TestFlight'
task :testflight do
#...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment