Skip to content

Instantly share code, notes, and snippets.

@jabley
Created September 17, 2009 10:06
Show Gist options
  • Save jabley/188434 to your computer and use it in GitHub Desktop.
Save jabley/188434 to your computer and use it in GitHub Desktop.
class Foo
def self.logger
# create logger here
end
def logger
Foo.logger
end
end
class Bar < Foo
def take_over_the_world
logger.info "Try to take over the world!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment