Class: Ppl::Format::Contact::PhoneNumber
- Inherits:
-
Ppl::Format::Contact
- Object
- Ppl::Format::Contact
- Ppl::Format::Contact::PhoneNumber
- Defined in:
- lib/ppl/format/contact/phone_number.rb
Instance Attribute Summary collapse
-
#table ⇒ Object
writeonly
Sets the attribute table.
Instance Method Summary collapse
-
#initialize(colors = {}) ⇒ PhoneNumber
constructor
A new instance of PhoneNumber.
- #process(contact) ⇒ Object
Constructor Details
#initialize(colors = {}) ⇒ PhoneNumber
Returns a new instance of PhoneNumber.
5 6 7 |
# File 'lib/ppl/format/contact/phone_number.rb', line 5 def initialize(colors={}) @table = Ppl::Format::Table.new([:star, :phone_numbers, :type], colors) end |
Instance Attribute Details
#table=(value) ⇒ Object (writeonly)
Sets the attribute table
3 4 5 |
# File 'lib/ppl/format/contact/phone_number.rb', line 3 def table=(value) @table = value end |
Instance Method Details
#process(contact) ⇒ Object
9 10 11 12 |
# File 'lib/ppl/format/contact/phone_number.rb', line 9 def process(contact) contact.phone_numbers.each { |pn| add_row(pn) } @table.to_s end |