Class: Ppl::Format::AddressBook::Birthdays

Inherits:
Ppl::Format::AddressBook show all
Defined in:
lib/ppl/format/address_book/birthdays.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(colors = {}) ⇒ Birthdays

Returns a new instance of Birthdays.



5
6
7
# File 'lib/ppl/format/address_book/birthdays.rb', line 5

def initialize(colors={})
  @table = Ppl::Format::Table.new([:id, :birthday], colors)
end

Instance Attribute Details

#table=(value) ⇒ Object (writeonly)

Sets the attribute table

Parameters:

  • value

    the value to set the attribute table to.



3
4
5
# File 'lib/ppl/format/address_book/birthdays.rb', line 3

def table=(value)
  @table = value
end

Instance Method Details

#process(address_book) ⇒ Object



9
10
11
12
# File 'lib/ppl/format/address_book/birthdays.rb', line 9

def process(address_book)
  address_book.contacts.each { |contact| add_row(contact) }
  @table.to_s
end