Skip to content
View stevenharman's full-sized avatar

Highlights

  • Pro

Organizations

@highgroove @dropbox @brewdega @minimagick @grocer @docsend @interagent @DirtJockey @humrun
Block or Report

Block or report stevenharman

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. config config Public

    holy cow, wholly config! Vim, Zshell, Ack, & the rest of my dot-files.

    Vim Script 20 1

  2. dumb_delegator dumb_delegator Public

    Delegator and SimpleDelegator in Ruby's stdlib are useful, but they pull in most of Kernel. This is not appropriate for many uses; for instance, delegation to Rails models.

    Ruby 65 6

  3. git_tracker git_tracker Public

    Some simple tricks that make working with Pivotal Tracker even better... and easier... um, besier!

    Ruby 170 11

  4. grocer/grocer grocer/grocer Public

    Pushing your Apple notifications since 2012.

    Ruby 1k 129

  5. Heroku Release Phase script for mana... Heroku Release Phase script for managing Rails DB migrations, and playing nice with Review Apps and postdeploy scripts
    1
    # Heroku Release Phase + Review Apps + Rails
    2
    
                  
    3
    This is a simplified, but fairly thorough, set of scripts and configuration to enable [Heroku Release Phase](https://devcenter.heroku.com/articles/release-phase) for Rails apps.
    4
    Further, this particular set up plays nicely with [Heroku Review Apps](https://devcenter.heroku.com/articles/github-integration-review-apps) in that the `release` phase script will:
    5
    
                  
  6. A subtle difference between Ruby's H... A subtle difference between Ruby's Hash.fetch(:key, :default) vs. (Hash[:key] || :default)
    1
    h = {
    2
      'a' => :a_value,
    3
      'b' => nil,
    4
      'c' => false
    5
    }