README.md in datarank-0.2 vs README.md in datarank-1.0.0
- old
+ new
@@ -1,36 +1,40 @@
# DataRank API Ruby Library
+[![Gem Version](https://badge.fury.io/rb/datarank.svg)](http://badge.fury.io/rb/datarank)
+[![Build Status](https://travis-ci.org/datarank/datarank-ruby.svg)](https://travis-ci.org/datarank/datarank-ruby/master)
+[![Code Climate](https://codeclimate.com/github/datarank/datarank-ruby/badges/gpa.svg)](https://codeclimate.com/github/datarank/
+datarank-ruby)
+
## Documentation
[http://www.rubydoc.info/github/datarank/datarank-ruby/master](http://www.rubydoc.info/github/datarank/datarank-ruby/master)
## Installation
` gem install datarank `
## Getting Started
-Using bundler, datarank will be automatically included for your project through your gemfile. If you would like to interactively play with the API, use `bundle console`.
**Instance method usage:**
```ruby
-client = Datarank::Client.new(api_key,api_version)
+client = Datarank::Client.new(api_key, api_version)
topics = client.all_topics
```
### Authentication
```ruby
-client = Datarank::Client.new(api_key,api_version)
+client = Datarank::Client.new(api_key, api_version)
```
## More Examples
-** Fetch comments for a topic
+**Fetch comments for a topic**
```ruby
-client = Datarank::Client.new(api_key,api_version)
+client = Datarank::Client.new(api_key, api_version)
comments = client.comments_search "tide-pods", {limit: 10}
```
## License