Class: AncientCityRuby::EventsTable::Printer

Inherits:
Object
  • Object
show all
Defined in:
lib/ancient-city-ruby/events_table/printer.rb

Instance Method Summary collapse

Instance Method Details



4
5
6
7
8
9
# File 'lib/ancient-city-ruby/events_table/printer.rb', line 4

def print_table(data)
  data.keys.each do |date|
    print_date(date)
    print_schedule_table(data[date])
  end
end