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.



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

#colorObject (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_styleObject (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