Method: SimpleShipping::Demo::Base#recipient_contact
- Defined in:
- lib/simple_shipping/demo/base.rb
#recipient_contact ⇒ SimpleShipping::Contact
Build the recipient contact.
55 56 57 58 59 60 |
# File 'lib/simple_shipping/demo/base.rb', line 55 def recipient_contact @recipient_contact ||= SimpleShipping::Contact.new( :person_name => "John Recipient Smith", :phone_number => "1234567890" ) end |