Skip to content

Instantly share code, notes, and snippets.

View alexshapalov's full-sized avatar
🎯
Focusing

Alex Shapalov alexshapalov

🎯
Focusing
View GitHub Profile
@alexshapalov
alexshapalov / chain.rb
Created February 4, 2009 02:36 — forked from wycats/chain.rb
module TrackAddedMethods
def method_added(meth)
@__added_methods ||= []
@__added_methods << meth
end
def __added_methods
@__added_methods
end
end