Class: Ayadn::SetColor
Instance Attribute Summary
Attributes inherited from SetBase
Instance Method Summary collapse
-
#initialize ⇒ SetColor
constructor
A new instance of SetColor.
- #method_missing(meth, options) ⇒ Object
- #validate(color) ⇒ Object
Methods inherited from SetBase
Constructor Details
#initialize ⇒ SetColor
Returns a new instance of SetColor.
483 484 485 486 |
# File 'lib/ayadn/set.rb', line 483 def initialize super @category = 'colors' end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, options) ⇒ Object
492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
# File 'lib/ayadn/set.rb', line 492 def method_missing(meth, ) @input = meth.to_s.capitalize @output = validate() case meth.to_s when 'id', 'index', 'username', 'name', 'date', 'link', 'dots', 'hashtags', 'mentions', 'source', 'symbols', 'unread', 'debug' Settings.[:colors][meth.to_sym] = @output when 'hashtag', 'mention', 'symbol' Settings.[:colors]["#{meth}s".to_sym] = @output when 'client' Settings.[:colors][:source] = @output else super end end |
Instance Method Details
#validate(color) ⇒ Object
488 489 490 |
# File 'lib/ayadn/set.rb', line 488 def validate(color) Validators.color(color) end |