Skip to content

Instantly share code, notes, and snippets.

@chad
Created May 25, 2010 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chad/413790 to your computer and use it in GitHub Desktop.
Save chad/413790 to your computer and use it in GitHub Desktop.
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