class FullscreenTui::Header

Constants

SEPERATOR

Attributes

parts[RW]

Public Class Methods

new(parts = nil) click to toggle source
# File lib/fullscreen_tui/header.rb, line 8
def initialize parts = nil
  self.parts = parts.nil? ? [] : parts
end

Public Instance Methods

output() click to toggle source
# File lib/fullscreen_tui/header.rb, line 12
def output
  parts.join SEPERATOR
end