what3words 2.1.1 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f9631e97c5f664a7205fdb297e03ec68ba80608
4
- data.tar.gz: 1f45125f7dd016a8a17f75bd290b89f0f828e6fb
3
+ metadata.gz: a4eb28d2cfd8ec8b5374248bbd07d5d4527e83c4
4
+ data.tar.gz: 6b380be53a4cf8460aa7514e73012fb92111b37b
5
5
  SHA512:
6
- metadata.gz: 6b2e3c38f9979c34acc6efb3ddde9e076bce2a50c0e82c17018ea7fef9842a6d8b9d2c805e4b2509b3785a460a314c6f8ee144cb0bc7c52f9af943a0fd502de8
7
- data.tar.gz: d006eab3c400debaf673c4d6f98ca8335dc8dbe7c7081b37e7063c62d98814b7383e72989b0e59c6b869ad17181eed7214ee80624887b17c38247706ea12c5cd
6
+ metadata.gz: 683d51f88b0b65dccdf86474c3e8c3259841cf204ac6b8f60f75c95bf63cf3a27db8097039cec2038fb96522604df7fcb2b5bd62359b46e23742930ccdee58de
7
+ data.tar.gz: 93b0d139348a8a738a36ee4a00256a2723a92dfc290f1e31faf04dd8584157a3d9038227c9baa377edbf792af31b5d5f66918824430d069cae3537f940d6bda6
data/README.md CHANGED
@@ -185,7 +185,7 @@ See http://developer.what3words.com for the original API call documentation
185
185
  $ export W3W_API_KEY=<Secret API Key>
186
186
  ```
187
187
 
188
- * on you cloned folder
188
+ * on your cloned folder
189
189
  1. `$ cd w3w-ruby-wrapper`
190
190
  1. `$ bundle update`
191
191
  1. `$ rake rubocop spec`
@@ -198,13 +198,15 @@ Find a bug or want to request a new feature? Please let us know by submitting an
198
198
  Anyone and everyone is welcome to contribute.
199
199
 
200
200
  1. Fork it (http://github.com/what3words/w3w-ruby-wrapper and click "Fork")
201
- 2. Create your feature branch (`git checkout -b my-new-feature`)
202
- 3. Commit your changes (`git commit -am 'Add some feature'`)
203
- 4. Push to the branch (`git push origin my-new-feature`)
204
- 5. Create new Pull Request
201
+ 1. Create your feature branch (`git checkout -b my-new-feature`)
202
+ 1. Commit your changes (`git commit -am 'Add some feature'`)
203
+ 1. Don't forget to update README and bump [version](./lib/what3words/version.rb) using [semver](https://semver.org/)
204
+ 1. Push to the branch (`git push origin my-new-feature`)
205
+ 1. Create new Pull Request
205
206
 
206
207
  # Revision History
207
208
 
209
+ * `v2.2.0` 03/01/18 - Enforce Ruby 2.4 Support - Thanks to PR from Dimitrios Zorbas [@Zorbash](https://github.com/zorbash)
208
210
  * `v2.1.1` 22/05/17 - Update gemspec to use rubocop 0.48.1, and fixes spec accordingly
209
211
  * `v2.1.0` 28/03/17 - Added multilingual version of `autosuggest` and `standardblend`
210
212
  * `v2.0.4` 27/03/17 - Updated README with `languages` method result updated from live result
@@ -1,3 +1,3 @@
1
1
  module What3Words
2
- VERSION = '2.1.1'.freeze
2
+ VERSION = '2.2.0'.freeze
3
3
  end
data/what3words.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^spec/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.add_dependency 'rest-client', '~> 1.8'
21
+ spec.add_dependency('rest-client', '>= 1.8', '< 3.0')
22
22
 
23
23
  spec.add_development_dependency 'bundler', '>= 1.7.9'
24
24
  spec.add_development_dependency 'rake', '~> 11.1'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: what3words
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - what3words
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-22 00:00:00.000000000 Z
11
+ date: 2018-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.8'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '3.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '1.8'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: bundler
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -135,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
141
  version: '0'
136
142
  requirements: []
137
143
  rubyforge_project:
138
- rubygems_version: 2.6.10
144
+ rubygems_version: 2.5.2
139
145
  signing_key:
140
146
  specification_version: 4
141
147
  summary: what3words API wrapper in Ruby