Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created September 9, 2008 17:11
Show Gist options
  • Save jackdempsey/9710 to your computer and use it in GitHub Desktop.
Save jackdempsey/9710 to your computer and use it in GitHub Desktop.
~/git/thor (constants)$ irb
>> require 'thor'
=> true
>> Thor
=> Thor
>> Thor.constants
=> ["OrderedHash", "Util", "TaskHash", "Options", "Error", "Task"]
>> Thor::TaskHash.constants
=> ["Node"]
>> Thor::TaskHash::Node.constants
=> ["Group", "Passwd", "Tms"]
>> Thor::TaskHash::Node::Group.constants
=> ["Group", "Passwd", "Tms"]
>> Thor::TaskHash::Node::Group::Group.constants
=> ["Group", "Passwd", "Tms"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment