yelpify 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.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/yelpify/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0cce646e140e986fb2051b5bb0668b74857af2c
|
4
|
+
data.tar.gz: f22a0720f0f76350ab364152e238c34585f830be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46171d739a3691fae60855080b0385b5a9da6c06c11462fa2799ede032cdcd8bccc18467569cb7360113b8bf164f2c733236628c036b4f9fb417444bf2e88669
|
7
|
+
data.tar.gz: 49dba8c025788f99cbe066b18b075b2c33483187bdb3b677aa53e0538ffe6602d55cfc3144ca3d28fc597597ea1a89cd664fbaa8aa3d9915876f06b5e9ab7a7a
|
data/README.md
CHANGED
@@ -24,13 +24,13 @@ Or install it yourself as:
|
|
24
24
|
|
25
25
|
To begin use of Yelpify, you must first instantiate a new client by passing in a hash of the API keys acquired from Yelp (http://www.yelp.com/developers).
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
27
|
+
oauth_creds = {
|
28
|
+
consumer_key: <YELP KEY>,
|
29
|
+
consumer_secret: <YELP SECRET>,
|
30
|
+
token: <YELP TOKEN>,
|
31
|
+
token_secret: <YELP TOKEN SECRET>
|
32
|
+
}
|
33
|
+
client = Yelpify.create_new(oauth_creds)
|
34
34
|
|
35
35
|
Your new client is equipped with both search and business functionality.
|
36
36
|
|
data/lib/yelpify/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yelpify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lili Serfaty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth
|