Skip to content

Instantly share code, notes, and snippets.

@wnuqui
Created May 22, 2012 06:45
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 wnuqui/2767143 to your computer and use it in GitHub Desktop.
Save wnuqui/2767143 to your computer and use it in GitHub Desktop.
module inside a class! what do you think?
class Foo
module Bar
def self.test
puts "Test!"
end
end
end
# Bar namespaced to Foo for the "test" util method!
# what do you think?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment