Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created September 9, 2008 17:53
Show Gist options
  • Save jackdempsey/9721 to your computer and use it in GitHub Desktop.
Save jackdempsey/9721 to your computer and use it in GitHub Desktop.
>> object = Struct.new(:example)
=> #<Class:0x231d3f8>
>> object.constants
=> ["Group", "Passwd", "Tms"]
>> object::Group.constants
=> ["Group", "Passwd", "Tms"]
>> object::Group::Group.constants
=> ["Group", "Passwd", "Tms"]
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment