Method: Thor::Base.subclass_files
- Defined in:
- lib/thor/base.rb
.subclass_files ⇒ Object
Returns the files where the subclasses are kept.
Returns
Hash[path<String> => Class]
93 94 95 |
# File 'lib/thor/base.rb', line 93 def self.subclass_files @subclass_files ||= Hash.new { |h, k| h[k] = [] } end |