I hereby claim:
- I am bhaberer on github.
- I am bhaberer (https://keybase.io/bhaberer) on keybase.
- I have a public key ASCfrbjIfgzHw5E8LWLbP1TDIxpLoU_wVKSIVVsypn_t7wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Hi All, | |
It has been way too long since my last beer e-mail, more on that later, | |
but I’d like to get you all caught up with a couple of events that are up | |
coming in our world of beer and then I’ll move on to some big news! | |
Tomorrow, Thursday the 20th, we are going to begin a trial run of weekly | |
Beer Tastings in the Redwood City Tasting Bar. These tastings will take | |
place every Thursday evening from 5-6:30 and will be focused mainly on | |
new releases. We hope these will be a big success and we have keep having | |
them throughout the year so please come and support them if you can. Tomorrow’s |
# Usage: | |
# 1. Drop this file into lib/capistrano/submodule_strategy.rb | |
# 2. Add the following to your Capfile: | |
# require 'capistrano/git' | |
# require './lib/capistrano/submodule_strategy' | |
# 3. Add the following to your config/deploy.rb | |
# set :git_strategy, SubmoduleStrategy | |
module SubmoduleStrategy | |
# do all the things a normal capistrano git session would do |
#! /bin/bash | |
# erb2haml | |
# by Michelangelo Altamore | |
# Obtains a file list having an html.erb extension | |
# under the current dir and convert each file | |
# to haml format with html.haml extension. | |
# It requires haml gem. | |
for erb_file in `find . -name *.html.erb`; do |