rgeo-shapefile 1.0.0 → 1.1.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/History.md +14 -2
- data/README.md +8 -4
- data/lib/rgeo/shapefile/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60b5fe0419db2be490c686e44bcb45b9a0ba525135d508d942794611eee5644b
|
|
4
|
+
data.tar.gz: fcd09ac84d91cc2cedd780daf6ce33bcc7976a4256cde707f23ce3390ccf1804
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d643dee4381e0b0d1c8da6272a2c7fa7bec301842874c1e6474522f54c899c4abf9ac065e64af0c57f4d04548e539b0e4d63f6716103fa0d2b03d47a4268329a
|
|
7
|
+
data.tar.gz: 418425fe33d02f0c6136b2f2279ca4430886a3a7d7c76b51afe5694a71cebd665183276c2a9c2493893609da18a3d6acbb1cf5a39b3d7bb294a0c35630d3f5cb
|
data/History.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
|
+
### 1.1.0 / 2018-11-30
|
|
2
|
+
|
|
3
|
+
* Allow rgeo 2.0 (#29, sunpoet)
|
|
4
|
+
* Require ruby 2.3+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### 1.0.0 / 2018-3-6
|
|
8
|
+
|
|
9
|
+
* Require rgeo 1.0 (#27)
|
|
10
|
+
* Freeze strings
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
### 0.4.2 / 2017-1-31
|
|
2
14
|
|
|
3
|
-
* Require ruby 2.1
|
|
4
|
-
* Handle non-string path objects in Reader #20
|
|
15
|
+
* Require ruby 2.1+
|
|
16
|
+
* Handle non-string path objects in Reader (#20, msimonborg)
|
|
5
17
|
|
|
6
18
|
### 0.4.1 / 2015-2-8
|
|
7
19
|
|
data/README.md
CHANGED
|
@@ -42,7 +42,7 @@ end
|
|
|
42
42
|
|
|
43
43
|
`RGeo::Shapefile` has the following requirements:
|
|
44
44
|
|
|
45
|
-
* Ruby 2.
|
|
45
|
+
* Ruby 2.3.0 or later
|
|
46
46
|
* rgeo 1.0.0 or later.
|
|
47
47
|
* dbf 3.0 or later.
|
|
48
48
|
|
|
@@ -58,15 +58,19 @@ Install `RGeo::Shapefile` as a gem:
|
|
|
58
58
|
gem install rgeo-shapefile
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
See the
|
|
61
|
+
See the [`rgeo`](https://github.com/rgeo/rgeo) gem, a required dependency,
|
|
62
|
+
for further installation information.
|
|
62
63
|
|
|
63
|
-
If you are using Ruby
|
|
64
|
+
If you are using Ruby 2.0-2.2, use version `1.0.x` of this gem.
|
|
64
65
|
|
|
65
66
|
If you are using Ruby 1.9, use version `0.3.x` of this gem.
|
|
66
67
|
|
|
68
|
+
If you are using Ruby 1.8, use version `0.2.x` of this gem.
|
|
69
|
+
|
|
70
|
+
|
|
67
71
|
## Development and support
|
|
68
72
|
|
|
69
|
-
Documentation is available at
|
|
73
|
+
Documentation is available at https://www.rubydoc.info/gems/rgeo-shapefile
|
|
70
74
|
|
|
71
75
|
Source code is hosted on Github at https://github.com/rgeo/rgeo-shapefile
|
|
72
76
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rgeo-shapefile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
@@ -9,20 +9,20 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rgeo
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- - "
|
|
18
|
+
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '1.0'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- - "
|
|
25
|
+
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '1.0'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
@@ -110,7 +110,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
requirements:
|
|
111
111
|
- - ">="
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: 2.
|
|
113
|
+
version: 2.3.0
|
|
114
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
115
|
requirements:
|
|
116
116
|
- - ">="
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
version: '0'
|
|
119
119
|
requirements: []
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 2.7.
|
|
121
|
+
rubygems_version: 2.7.8
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: An RGeo module for reading ESRI shapefiles.
|