what3words 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -1
- data/lib/what3words/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 601e19657a0d9c09dc4af619041bf3ed0d87669b
|
4
|
+
data.tar.gz: 2df177b0de101ba2928888306db815bcaaa8e9c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed00c76a40d5b5675f6caacef0ccd3271d55dd462c1204e0f368c0fc5c1aa8834d99f476656f8cfc6522839ca4dd73184bb33635f5ea6284cc10f4fe80f2a127
|
7
|
+
data.tar.gz: 4f4b1ca2734b3a50332bc359ba4ae2586a45f6b77a48db52c8164c736e77b87cd6cf1ba82711f6d030e3a4ee71f11bf5dfb7580d768680f36e145c8fda07c52a
|
data/README.md
CHANGED
@@ -6,7 +6,6 @@ Use the What3Words API in your Ruby app (see http://what3words.com/api/reference
|
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
|
-
gem "what3words"
|
10
9
|
|
11
10
|
And then execute:
|
12
11
|
|
@@ -23,6 +22,10 @@ Sign up for an API key at http://what3words.com/api/signup
|
|
23
22
|
See http://what3words.com/api/reference for all parameters that can be
|
24
23
|
passed to the API calls
|
25
24
|
|
25
|
+
If not using Bundler, require it:
|
26
|
+
|
27
|
+
require "what3words"
|
28
|
+
|
26
29
|
Then:
|
27
30
|
|
28
31
|
what3words = What3Words::API.new(:key => "<your-api-key>")
|
data/lib/what3words/version.rb
CHANGED