Skip to content

Instantly share code, notes, and snippets.

@bobbrez
bobbrez / address.rb
Created September 28, 2011 19:24 — forked from galiat/gist:1248941
class Address < ActiveRecord::Base
belongs_to :contact
validates_presence_of :street, :town
end
@bobbrez
bobbrez / .bashrc
Created April 12, 2011 01:25 — forked from henrik/.bashrc
# http://henrik.nyh.se/2008/12/git-dirty-prompt
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/
# username@Machine ~/dev/dir[master]$ # clean working directory
# username@Machine ~/dev/dir[master*]$ # dirty working directory
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
}
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"