Skip to content

Instantly share code, notes, and snippets.

@lolmaus
Created April 24, 2011 09:05
Show Gist options
  • Save lolmaus/939425 to your computer and use it in GitHub Desktop.
Save lolmaus/939425 to your computer and use it in GitHub Desktop.
class DB
def self.poke!
# This is a stub.
end
def self.poke_child
DB_CSV.poke!
end
end
class DB_CSV < DB
def self.poke!
puts "Ouch!"
end
end
DB.poke_child # Produces: Ouch!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment