README.md in fullcontact-0.5.0 vs README.md in fullcontact-0.6.0

- old
+ new

@@ -1,9 +1,14 @@ FullContact Ruby Gem ==================== A Ruby wrapper for the [FullContact API](http://www.fullcontact.com/) +Changes +------- + +0.6.0 - Removal of timeoutSeconds parameter. This parameter is automatically stripped from your request if included. + Installation ------------ gem install fullcontact Documentation @@ -21,13 +26,19 @@ end # Get information about a email address person = FullContact.person(email: "brawest@gmail.com") - # Get information about a twitter + # Get information about a twitter handle person2 = FullContact.person(twitter: "brawest") + # Get information about a facebook username + person3 = FullContact.person(facebookUsername: "bart.lorang") + + # Get information from a phone number + person4 = FullContact.person(phone:13037170414) + # Get information about a twitter and ensure a 30s socket open timeout and a 15s socket read timeout # Can throw a Faraday::Error::TimeoutError if timeouts are exceeded person3 = FullContact.person({:twitter => "brawest"}, {:request => {:timeout => 15, :open_timeout => 30}}) # Get person's family_name @@ -39,8 +50,8 @@ - Ian Fisher (i-taptera) - Scott Watermasysk (scottwater) Copyright --------- -Copyright (c) 2012 FullContact, Brandon West +Copyright (c) 2013 FullContact, Brandon West See [LICENSE](https://github.com/brandonmwest/rainmaker/blob/master/LICENSE.md) for details.