Skip to content

Instantly share code, notes, and snippets.

Created January 8, 2018 14:04
Show Gist options
  • Save anonymous/541b62eaa551121f527227d6406bf24b to your computer and use it in GitHub Desktop.
Save anonymous/541b62eaa551121f527227d6406bf24b to your computer and use it in GitHub Desktop.
logger.rb
module MyModule
class Logger
def log
Time.now
end
end
end
app.rb
require 'logger'
logger = MyModule::Logger.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment