searchbing 0.2.1 → 0.2.2
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 +8 -1
- data/lib/searchbing.rb +2 -2
- metadata +1 -1
data/README.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
searchbing [](https://travis-ci.org/rcullito/searchbing)
|
2
|
+
=========
|
3
|
+
|
4
|
+
|
1
5
|

|
2
6
|
|
3
7
|
|
@@ -39,4 +43,7 @@ or optionally specify an offset for your search, to start retrieving results fro
|
|
39
43
|
|
40
44
|
parse the results
|
41
45
|
|
42
|
-
puts bing_results[0]["Thumbnail"]["MediaUrl"] # puts url of thumbnail
|
46
|
+
puts bing_results[0]["Thumbnail"]["MediaUrl"] # puts url of thumbnail
|
47
|
+
display the total number of rsults
|
48
|
+
|
49
|
+
puts bing_results[0]["ImageTotal"]
|
data/lib/searchbing.rb
CHANGED