Skip to content

Instantly share code, notes, and snippets.

@jeremywrowe
Created November 11, 2012 05:16
Show Gist options
  • Save jeremywrowe/4053798 to your computer and use it in GitHub Desktop.
Save jeremywrowe/4053798 to your computer and use it in GitHub Desktop.
module ModuleExtensions
refine String do
def foo
puts "bar"
end
end
end
class Poop
using ModuleExtensions
def say
"".foo
end
end
Poop.new.say
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment