book_finder_api 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +10 -2
- data/lib/book_finder_api/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -17,9 +17,17 @@ Or install it yourself as:
|
|
17
17
|
$ gem install book_finder_api
|
18
18
|
|
19
19
|
## Usage
|
20
|
-
|
21
|
-
BookFinder.flipkart(9788120305960)
|
22
20
|
|
21
|
+
method : flipkart
|
22
|
+
parameter : ISBN
|
23
|
+
ISBN number of the Book you want to get. It should be 10 digits.
|
24
|
+
returns : Hash
|
25
|
+
It returns the Hash of the Book Details with Field and value basis.
|
26
|
+
Syntax :
|
27
|
+
Hash BookFinder.flipkart(ISBN)
|
28
|
+
Example :
|
29
|
+
book_details = BookFinder.flipkart(9788120305960)
|
30
|
+
|
23
31
|
## Contributing
|
24
32
|
|
25
33
|
1. Fork it
|