Created
July 13, 2015 21:07
-
-
Save joemocha/a79f2a127f08a6a3dc74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| begin | |
| address = EasyPost::Address.create( | |
| :name => 'Test Person', | |
| :street1 => '15 TANGUAY AVENUE', | |
| :city => 'Nashua', | |
| :state => 'NH', | |
| :zip => '03062', | |
| :country => 'US', | |
| :phone => '201-273-8374', | |
| :residential => false | |
| ) | |
| address.verify | |
| rescue EasyPost::Error => e | |
| puts "ERROR: #{e.message}" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment