Skip to content

Instantly share code, notes, and snippets.

@avk
Created July 24, 2009 20:00
Show Gist options
  • Save avk/154511 to your computer and use it in GitHub Desktop.
Save avk/154511 to your computer and use it in GitHub Desktop.
module URIExtension
def self.included(klass)
klass.extend ClassMethods
end
module ClassMethods
def foo
"baz"
end
end
end
URI.send(:include, URIExtension::ClassMethods)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment