Class: Pry::Helpers::Table

Inherits:
Object show all
Defined in:
lib/pry/helpers/table.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items, args, config = Pry.config) ⇒ Table

Returns a new instance of Table.



33
34
35
36
37
# File 'lib/pry/helpers/table.rb', line 33

def initialize(items, args, config = Pry.config)
  @column_count = args[:column_count]
  @config = config
  self.items = items
end

Instance Attribute Details

#column_countObject

Returns the value of attribute column_count.



32
33
34
# File 'lib/pry/helpers/table.rb', line 32

def column_count
  @column_count
end

#itemsObject

Returns the value of attribute items.



32
33
34
# File 'lib/pry/helpers/table.rb', line 32

def items
  @items
end

Instance Method Details

#==(other) ⇒ Object



78
# File 'lib/pry/helpers/table.rb', line 78

def ==(other); items == other.to_a end

#columnsObject



74
75
76
# File 'lib/pry/helpers/table.rb', line 74

def columns
  @rows_without_colors.transpose
end

#fits_on_line?(line_length) ⇒ Boolean

Returns:

  • (Boolean)


70
71
72
# File 'lib/pry/helpers/table.rb', line 70

def fits_on_line? line_length
  _max_width(rows_to_s :no_color) <= line_length
end

#rows_to_s(style = :color_on) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/pry/helpers/table.rb', line 43

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(@config.ls.separator)
  end
end

#to_aObject



80
# File 'lib/pry/helpers/table.rb', line 80

def to_a; items.to_a end

#to_sObject



39
40
41
# File 'lib/pry/helpers/table.rb', line 39

def to_s
  rows_to_s.join("\n")
end