Method: Jekyll::Command.inherited

Defined in:
lib/ngage/jekyll/command.rb

.inherited(base) ⇒ Object

Keep a list of subclasses of Jekyll::Command every time it’s inherited Called automatically.

base - the subclass

Returns nothing



17
18
19
20
# File 'lib/ngage/jekyll/command.rb', line 17

def inherited(base)
  subclasses << base
  super(base)
end