README.md in hubspot-ruby-0.1.8 vs README.md in hubspot-ruby-0.2.0
- old
+ new
@@ -27,12 +27,18 @@
For now, this library only supports authentication with a HubSpot API key (aka "hapikey"). OAuth is not yet supported.
## Usage
-Not much is supported yet, but that will change. Here's what you can do for now:
+Here's what you can do for now:
+### Create a contact
+
+```ruby
+Hubspot::Contact.create!("email@address.com", {firstname: "First", lastname: "Last"})
+```
+
### Find a contact
These methods will return a `Hubspot::Contact` object if successful, `nil` otherwise:
```ruby
@@ -47,11 +53,11 @@
```ruby
contact.update!({firstname: "First", lastname: "Last"})
```
## Contributing to hubspot-ruby
-
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
@@ -69,10 +75,6 @@
"Live" tests can be isolated with `rake spec:live`.
## Disclaimer
This project and the code therein was not created by and is not supported by HubSpot, Inc or any of its affiliates.
-
-## Copyright
-
-Copyright (c) 2013 Omada Health Inc. See LICENSE.txt for further details.