Skip to content

Instantly share code, notes, and snippets.

@bartolsthoorn
Created August 1, 2012 14:01
Show Gist options
  • Save bartolsthoorn/3227092 to your computer and use it in GitHub Desktop.
Save bartolsthoorn/3227092 to your computer and use it in GitHub Desktop.
class A
class B
class C
def foo
puts "Boo"
end
end
end
end
class A
end
class B
end
class C < B < A
def foo
puts "Boo"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment