Skip to content

Instantly share code, notes, and snippets.

View squeedee's full-sized avatar
💃
Choreographer to the stars!

Rasheed Abdul-Aziz squeedee

💃
Choreographer to the stars!
View GitHub Profile
@squeedee
squeedee / gist:7217317
Created October 29, 2013 15:53
workday credential cache
git config credential.helper 'cache --timeout 28800'
@squeedee
squeedee / farm.rb
Created March 22, 2011 22:51
BiScoped DSL
class Farm
attr_accessor :animals
def initialize(&block)
@animals = []
block.arity == 1 ? yield(self) : self.instance_eval(&block)
end