Method: Ayadn::SetMarker#method_missing

Defined in:
lib/ayadn/set.rb

#method_missing(meth, options) ⇒ Object



491
492
493
494
495
496
497
498
499
500
# File 'lib/ayadn/set.rb', line 491

def method_missing(meth, options)
  @input = meth.to_s
  @output = validate(options)
  case @input
  when 'messages'
    Settings.options.marker.messages = @output
  else
    super
  end
end