Method: Thor::Base.register_klass_file
- Defined in:
- lib/vendor/thor/lib/thor/base.rb
.register_klass_file(klass) ⇒ Object
Whenever a class inherits from Thor or Thor::Group, we should track the class and the file on Thor::Base. This is the method responsable for it.
87 88 89 90 91 92 93 |
# File 'lib/vendor/thor/lib/thor/base.rb', line 87 def register_klass_file(klass) #:nodoc: file = caller[1].match(/(.*):\d+/)[1] Thor::Base.subclasses << klass unless Thor::Base.subclasses.include?(klass) file_subclasses = Thor::Base.subclass_files[File.(file)] file_subclasses << klass unless file_subclasses.include?(klass) end |