Method: CF::Table::CLI.rows

Defined in:
lib/cf/table/cli.rb

.rowsObject



25
26
27
28
29
30
31
# File 'lib/cf/table/cli.rb', line 25

def self.rows
  entities.map do |entry|
    columns.map do |column|
      entry[column]
    end
  end
end