Skip to content

Instantly share code, notes, and snippets.

View cew821's full-sized avatar

Charles Worthington cew821

View GitHub Profile
@nhocki
nhocki / gist:1095522
Created July 20, 2011 18:11 — forked from croaky/gist:1089598
Transfer data from production to staging on Heroku
heroku addons:add pgbackups --remote staging
heroku addons:add pgbackups --remote production
heroku pgbackups:capture --remote production
heroku pgbackups:restore DATABASE `heroku pgbackups:url --remote production` --remote staging
@jmaicher
jmaicher / gist:728441
Created December 4, 2010 20:03
Using Selenium with Cucumber and Fakeweb
# cucumber supports selenium by default, just mark features with @selenium tag
@selenium
Feature: This feature will be executed with selenium
...