Created
May 25, 2010 22:49
-
-
Save chad/413790 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module LoggerThingy | |
def self.included(klass) | |
klass.extend LoggerThingy::ClassMethods | |
end | |
module ClassMethods | |
def logger=(logger) | |
@logger = logger | |
end | |
def logger | |
@logger | |
end | |
end | |
def logger | |
self.class.logger | |
end | |
end | |
class Thing | |
include LoggerThingy | |
def initialize | |
puts "the logger is #{logger}" | |
end | |
end | |
Thing.logger = "the logger" | |
puts Thing.logger | |
Thing.new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment