Skip to content

Instantly share code, notes, and snippets.

@mps
Last active August 29, 2015 14:14

Revisions

  1. mps revised this gist Jan 29, 2015. 1 changed file with 4 additions and 5 deletions.
    9 changes: 4 additions & 5 deletions Rakefile
    Original file line number Diff line number Diff line change
    @@ -8,11 +8,6 @@
    #
    # 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
    #...
    @@ -43,3 +38,7 @@ task :test do
    #...
    end

    desc 'Send a build of your App to TestFlight'
    task :testflight do
    #...
    end
  2. mps created this gist Jan 29, 2015.
    45 changes: 45 additions & 0 deletions Rakefile
    Original 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