Method: MindWords#initialize

Defined in:
lib/mindwords.rb

#initialize(raws = '', parent: nil, debug: false) ⇒ MindWords

Returns a new instance of MindWords.



29
30
31
32
33
34
35
# File 'lib/mindwords.rb', line 29

def initialize(raws='', parent: nil, debug: false)

  @parent, @debug = parent, debug

  import(raws) if raws.length > 1

end