Method: Ayadn::SetChannels#method_missing

Defined in:
lib/ayadn/set.rb

#method_missing(meth, options) ⇒ Object



515
516
517
518
519
520
521
522
523
524
# File 'lib/ayadn/set.rb', line 515

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