This file contains hidden or 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
class Breadcrumb | |
Crumb = Struct.new(:name, :link) | |
attr_reader :crumbs | |
def initialize(name = "Home", link = "/") | |
@crumbs = [] | |
self.add(name, link) | |
end |
This file contains hidden or 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
#! /bin/sh | |
if [[ -z $1 ]]; then | |
echo "You must provide a branch name against which to test merging." | |
exit 1 | |
fi | |
gather_branches() { | |
for remote in `git for-each-ref --format='%(refname)' 'refs/remotes/'` | |
do |
This file contains hidden or 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
:+1: | |
:-1: | |
:airplane: | |
:art: | |
:bear: | |
:beer: | |
:bike: | |
:bomb: | |
:book: | |
:bulb: |