Module: Tap::Support::TDoc::InitializeConfigParser

Defined in:
lib/tap/support/tdoc.rb

Overview

Overrides the new method automatically extend the new object with ConfigParser. Intended to be used like:

RDoc::RubyParser.extend InitializeConfigParser

Instance Method Summary collapse

Instance Method Details

#new(*args) ⇒ Object

:nodoc:



247
248
249
250
251
252
# File 'lib/tap/support/tdoc.rb', line 247

def new(*args)
  parser = super
  parser.extend ConfigParser
  #parser.config_mode = 'config_accessor'
  parser
end