Skip to content

Instantly share code, notes, and snippets.

View stevecass's full-sized avatar

Steven Cassidy stevecass

  • 02:41 (UTC -04:00)
View GitHub Profile
class Duck
def quack
"Quack quack"
end
end
class Person
def quack
"Bad impression of Donald Duck"
end
@stevecass
stevecass / gist:d718290951618a52f9f4
Created November 25, 2014 16:24
Ancestor chaining in ruby
module AAA
def abc
"abc in AAA"
end
def not_in_common
"not_in_common in AAA"
end
end