class Clio::Layout::Line
Draws a horizonal line.
Attributes
fill[R]
Public Class Methods
new(fill='-')
click to toggle source
# File lib/clio/layout/line.rb, line 10 def initialize(fill='-') @fill = '-' end
Public Instance Methods
to_s()
click to toggle source
# File lib/clio/layout/line.rb, line 14 def to_s fill * screen_width end