Skip to content

Instantly share code, notes, and snippets.

View apfelfabrik's full-sized avatar

Martin Czuchra apfelfabrik

  • Freelance JavaScript and Rails
  • Berlin
View GitHub Profile
@apfelfabrik
apfelfabrik / .zshrc
Last active August 29, 2015 14:07
A Pivotal Tracker commit message hook.
set_bundle_gemfile () {
if [[ -f Gemfile.local ]]; then
export BUNDLE_GEMFILE=Gemfile.local
else
unset BUNDLE_GEMFILE
fi
}
preexec_functions+=(set_bundle_gemfile)