README.md in ar_book_finder-1.1.0 vs README.md in ar_book_finder-1.1.1
- old
+ new
@@ -86,11 +86,11 @@
...
```
Return publisher data...
```ruby
...
-publisher = book.publishers
+publisher = book.publishers[0]
publisher.name
publisher.isbn
...
```
@@ -108,11 +108,12 @@
```
### Pagination
It's also possible to paginate search results.
```ruby
-# Retrieve results for page 2 and sort on title
+# Retrieve results for page 2
results = ARBookFinder.search('harry potter', 2)
+results.current_page # should == 2
```
## Contributing
1. Fork it