This file contains 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 characters
require 'timecop' | |
module TemporalHelpers | |
# Travels to +time+ and lets the clock keep running. | |
# | |
# If a block is given, executes the block at that | |
# time then returns to the present. | |
def travel_to(time, &block) | |
Timecop.travel Time.parse(time), &block |
This file contains 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 characters
alias lola='git log --graph --decorate --pretty=oneline --abbrev-commit' |
This file contains 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 characters
<h2>Management & Office Staff</h2> | |
<ul class="employees"> | |
<r:employees:collection container="list" order="show_order" employee_type="managers"> | |
<r:name_link /> | |
</r:employees:collection> | |
</ul> |
This file contains 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 characters
[user] | |
name = Scott Chacon | |
email = [email protected] | |
[alias] | |
serve = !git daemon --reuseaddr --verbose --base-path=. --export-all ./.git | |
unstage = reset HEAD | |
lol = log --pretty=oneline --abbrev-commit --graph --decorate | |
branches = !git-branches | |
st = status | |
[gui] |
NewerOlder