README.md in goodreads-0.8.0 vs README.md in goodreads-0.9.0
- old
+ new
@@ -1,9 +1,11 @@
# Goodreads [![Build Status](https://img.shields.io/travis/sosedoff/goodreads/master.svg)](http://travis-ci.org/sosedoff/goodreads)
Ruby wrapper to communicate with Goodreads API.
+**NOTE: The Goodreads API [is being discontinued](https://www.goodreads.com/api).**
+
## Requirements
- Ruby 1.9.3+
## Installation
@@ -108,10 +110,21 @@
author.id # => author id
author.name # => author name
author.link # => link to author's Goodreads page
```
+Look up books by an author:
+
+```ruby
+author = client.author_Book("id")
+
+author.id # => author id
+author.name # => author name
+author.link # => link to author's Goodreads page
+author.books # => array of books by this author
+```
+
### Reviews
Pull recent reviews:
```ruby
@@ -214,7 +227,5 @@
- Check official [API documentation](http://www.goodreads.com/api)
## License
The MIT License (MIT)
-
-Copyright (c) 2011-2018 Dan Sosedoff, <dan.sosedoff@gmail.com>