what3words 3.3.0 → 3.4.0
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 +2 -1
- data/lib/what3words/version.rb +1 -1
- metadata +14 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cebf1f0467b0f839dc0ed8c254f59bc914b7a5f1aaabf0fdd73ccad5051a77ed
|
|
4
|
+
data.tar.gz: 8545d8a8a0438c3d38ab34ccab0668c7846ec24be05a0710b12eb213a6659ccd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f88a9c2d4967b1dea544f1fe8c105a2cbb59e45dc66881af8a5aef766c613bc4739fd196e9cd3763bde91b3ecd4a91c51e1eea92e13fdf0ad0b79a915ed0ddf
|
|
7
|
+
data.tar.gz: b56517e52cd4d778d658960d62ab65be1f861c5359bd86b01503c74c722a85e278f1700951f1cddbd34be32209dff91e6bd7b2e9c8c9659d18ee34e79c3a44de
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ The library is available through [RubyGems](https://rubygems.org/gems/what3words
|
|
|
15
15
|
You can simply add this line to your application's Gemfile:
|
|
16
16
|
|
|
17
17
|
```
|
|
18
|
-
gem 'what3words', '~> 3.
|
|
18
|
+
gem 'what3words', '~> 3.4'
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
And then execute:
|
|
@@ -438,6 +438,7 @@ Anyone and everyone is welcome to contribute.
|
|
|
438
438
|
|
|
439
439
|
# Revision History
|
|
440
440
|
|
|
441
|
+
* `v3.4.0` 15/01/25 - Update dependencies and upgrade ruby gemspec
|
|
441
442
|
* `v3.3.0` 12/08/24 - Update error message to handle c2c calls and dependencies
|
|
442
443
|
* `v3.2.0` 17/07/24 - Update regex patterns
|
|
443
444
|
* `v3.1.0` 16/07/24 - Update tests and code to host the regex functions
|
data/lib/what3words/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: what3words
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- what3words
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -34,16 +34,16 @@ dependencies:
|
|
|
34
34
|
name: bundler
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 1
|
|
39
|
+
version: '2.1'
|
|
40
40
|
type: :development
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - "
|
|
44
|
+
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1
|
|
46
|
+
version: '2.1'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: rake
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -117,23 +117,26 @@ licenses:
|
|
|
117
117
|
metadata:
|
|
118
118
|
documentation_uri: https://www.rubydoc.info/gems/what3words
|
|
119
119
|
source_code_uri: https://github.com/what3words/w3w-ruby-wrapper
|
|
120
|
-
post_install_message:
|
|
120
|
+
post_install_message:
|
|
121
121
|
rdoc_options: []
|
|
122
122
|
require_paths:
|
|
123
123
|
- lib
|
|
124
124
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
125
125
|
requirements:
|
|
126
|
-
- - "
|
|
126
|
+
- - ">="
|
|
127
127
|
- !ruby/object:Gem::Version
|
|
128
128
|
version: '2.6'
|
|
129
|
+
- - "<"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '4.0'
|
|
129
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
133
|
requirements:
|
|
131
134
|
- - ">="
|
|
132
135
|
- !ruby/object:Gem::Version
|
|
133
136
|
version: '0'
|
|
134
137
|
requirements: []
|
|
135
|
-
rubygems_version: 3.
|
|
136
|
-
signing_key:
|
|
138
|
+
rubygems_version: 3.4.10
|
|
139
|
+
signing_key:
|
|
137
140
|
specification_version: 4
|
|
138
141
|
summary: Ruby wrapper for the what3words API
|
|
139
142
|
test_files: []
|