Class: CLI::UI::Frame::FrameStack::StackItem

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/cli/ui/frame/frame_stack.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from T::Sig

sig

Constructor Details

#initialize(color_name, style_name) ⇒ StackItem

Returns a new instance of StackItem.



21
22
23
24
# File 'lib/cli/ui/frame/frame_stack.rb', line 21

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

#colorObject (readonly)

Returns the value of attribute color.



12
13
14
# File 'lib/cli/ui/frame/frame_stack.rb', line 12

def color
  @color
end

#frame_styleObject (readonly)

Returns the value of attribute frame_style.



15
16
17
# File 'lib/cli/ui/frame/frame_stack.rb', line 15

def frame_style
  @frame_style
end