Skip to content

Instantly share code, notes, and snippets.

@davidfrey
Created May 20, 2013 17:52
Show Gist options
  • Save davidfrey/5613946 to your computer and use it in GitHub Desktop.
Save davidfrey/5613946 to your computer and use it in GitHub Desktop.
Monkey patching an auto-loaded module.
# /lib/fix_me.rb
module FixMe
def self.status
'broken'
end
end
# /config/environments/development.rb
module FixMe
def self.status
'fixed'
end
end
# FixMe.status always returns 'broken'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment