Skip to content

Instantly share code, notes, and snippets.

View cmorss's full-sized avatar

Charlie Morss cmorss

View GitHub Profile
%button {
color: red;
font-size: 14px;
}
%button-big {
font-size: 18px;
}
@cmorss
cmorss / private.rb
Created July 28, 2008 22:06 — forked from jbarnette/private.rb
undefined
require "test/unit"
class Module
alias_method :old_private, :private
def private(*args)
old_private(*args)
end
end