Class: Avm::Result
- Inherits:
-
SimpleDelegator
- Object
- SimpleDelegator
- Avm::Result
- Includes:
- EacRubyUtils::Listable
- Defined in:
- lib/avm/result.rb
Defined Under Namespace
Classes: Error
Constant Summary collapse
- TYPE_SUCCESS_COLOR =
'green'
- TYPE_ERROR_COLOR =
'red'
- TYPE_NEUTRAL_COLOR =
'light_black'
Instance Attribute Summary collapse
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value, type) ⇒ Result
constructor
A new instance of Result.
- #label ⇒ Object
- #label_bg ⇒ Object
- #label_fg ⇒ Object
- #type_color ⇒ Object
Constructor Details
#initialize(value, type) ⇒ Result
Returns a new instance of Result.
32 33 34 35 36 |
# File 'lib/avm/result.rb', line 32 def initialize(value, type) super(value) validate_type(type) @type = type end |
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
30 31 32 |
# File 'lib/avm/result.rb', line 30 def type @type end |
Class Method Details
Instance Method Details
#label ⇒ Object
38 39 40 |
# File 'lib/avm/result.rb', line 38 def label label_fg end |
#label_bg ⇒ Object
46 47 48 |
# File 'lib/avm/result.rb', line 46 def label_bg ColorizedString.new(to_s).light_white.send("on_#{type_color}") end |
#label_fg ⇒ Object
42 43 44 |
# File 'lib/avm/result.rb', line 42 def label_fg ColorizedString.new(to_s).send(type_color) end |
#type_color ⇒ Object
50 51 52 |
# File 'lib/avm/result.rb', line 50 def type_color self.class.const_get("type_#{type}_color".upcase) end |