searchbing 0.0.4 → 0.0.5
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.
- checksums.yaml +8 -8
- data/README.md +14 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MmI5NmE2NGYwMzgzNzk5OWQyYjE2OTlhYmQxNjkyY2JjZWQwZDcxYQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTc3MzRiYmY4MzY4MWQyYjRjOTMzYzI4OTgzYmUyNzEwYWQ4NDA2OQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Y2Q2MTYzZjIyNmJhYjFiYTg3MDNhYmJkMmIxYjk1NDQwYzExMGE5M2Y3Yjlj
|
|
10
|
+
ZjRiMjE1ZTBiOTgzZmM2NjVjY2RlMzllNTdmMThkYWFiNWIwYjY2Y2MzZDNl
|
|
11
|
+
NDc4OTAwY2UyYzQ4YjI1NTE3NDRkNmMyZjQ3ZjhmM2I1Y2QwM2Q=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjFlMjI0NDIwNjgyZDc2YWI0MTkyNjMzM2U0YmIwMWJmMTZiZTA4NWI3NmQx
|
|
14
|
+
MGE3MWViZDI0NDQ5YjJjYzZmZmNlNWExZjY2MDQyNjdlZjA2MGE0Yzc4MWMy
|
|
15
|
+
MjI2NTAwNTlmYjg0YmVlMGU1YTE0ODRlNzU1NjQwZjBiMjNmOWM=
|
data/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Configuration
|
|
2
|
+
=============
|
|
3
|
+
You can crate a new account for the Bing Search API and obtain account key can be found at http://www.bing.com/developers/
|
|
4
|
+
|
|
5
|
+
Usage
|
|
6
|
+
============
|
|
7
|
+
1. create a new search object from the Bing class. Enter your recently obtained account key, the number of results you would like, and the search type.
|
|
8
|
+
2. valid search types include: Image, Web, or Video. The first letter must be capitalized
|
|
9
|
+
|
|
10
|
+
Example
|
|
11
|
+
===============
|
|
12
|
+
1. animals = Bing.new('your_account_key_goes_here', 10, 'Image')
|
|
13
|
+
|
|
14
|
+
2. animals.search("lion")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: searchbing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Culliton
|
|
@@ -18,6 +18,7 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- README.md
|
|
21
22
|
- lib/searchbing.rb
|
|
22
23
|
homepage: https://github.com/rcullito
|
|
23
24
|
licenses:
|