Class: Inventory::Presenter::Tab

Inherits:
Base
  • Object
show all
Defined in:
lib/inventory/presenters/tab.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Inventory::Presenter::Base

Instance Method Details

#displayObject



2
3
4
5
6
# File 'lib/inventory/presenters/tab.rb', line 2

def display
  @data.each do |row|
    puts row.join("\t")
  end
end