# File lib/pry/helpers/table.rb, line 32 def initialize items, args = {} @column_count = args[:column_count] self.items = items end
# File lib/pry/helpers/table.rb, line 75 def ==(other); items == other.to_a end
# File lib/pry/helpers/table.rb, line 62 def column_count= n @column_count = n _recolumn end
# File lib/pry/helpers/table.rb, line 71 def columns @rows_without_colors.transpose end
# File lib/pry/helpers/table.rb, line 67 def fits_on_line? line_length _max_width(rows_to_s :no_color) <= line_length end
# File lib/pry/helpers/table.rb, line 55 def items= items @items = items _rebuild_colorless_cache _recolumn items end
# File lib/pry/helpers/table.rb, line 41 def rows_to_s style = :color_on widths = columns.map{|e| _max_width(e)} @rows_without_colors.map do |r| padded = [] r.each_with_index do |e,i| next unless e item = e.ljust(widths[i]) item.sub! e, _recall_color_for(e) if :color_on == style padded << item end padded.join(Pry.config.ls.separator) end end
# File lib/pry/helpers/table.rb, line 76 def to_a; items.to_a end
# File lib/pry/helpers/table.rb, line 37 def to_s rows_to_s.join("\n") end