Class: CLI::UI::Frame::FrameStack::StackItem
- Inherits:
-
Object
- Object
- CLI::UI::Frame::FrameStack::StackItem
- Extended by:
- T::Sig
- Defined in:
- lib/cli/ui/frame/frame_stack.rb
Instance Attribute Summary collapse
-
#color ⇒ Object
readonly
Returns the value of attribute color.
-
#frame_style ⇒ Object
readonly
Returns the value of attribute frame_style.
Instance Method Summary collapse
-
#initialize(color_name, style_name) ⇒ StackItem
constructor
A new instance of StackItem.
Methods included from T::Sig
Constructor Details
#initialize(color_name, style_name) ⇒ StackItem
Returns a new instance of StackItem.
20 21 22 23 |
# File 'lib/cli/ui/frame/frame_stack.rb', line 20 def initialize(color_name, style_name) @color = CLI::UI.resolve_color(color_name) @frame_style = CLI::UI.resolve_style(style_name) end |
Instance Attribute Details
#color ⇒ Object (readonly)
Returns the value of attribute color.
11 12 13 |
# File 'lib/cli/ui/frame/frame_stack.rb', line 11 def color @color end |
#frame_style ⇒ Object (readonly)
Returns the value of attribute frame_style.
14 15 16 |
# File 'lib/cli/ui/frame/frame_stack.rb', line 14 def frame_style @frame_style end |