class Samovar::Output::Row
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/output/row.rb, line 9 def initialize(object) @object = object super object.to_a.collect(&:to_s) end
Calls superclass method
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/output/row.rb, line 16 def align(columns) self.collect.with_index do |value, index| value.ljust(columns.widths[index]) end.join(' ') end