Skip to content

Instantly share code, notes, and snippets.

@willglynn
Created October 17, 2012 03:14
Show Gist options
  • Save willglynn/3903510 to your computer and use it in GitHub Desktop.
Save willglynn/3903510 to your computer and use it in GitHub Desktop.
Nesting modules within a class
class SomeClass; end
module SomeClass::NestedModule; end
puts SomeClass.class
puts SomeClass::NestedModule.class
# prints:
# Class
# Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment