gdal3 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -0
- data/gdal3.gemspec +17 -9
- data/lib/gdal-ruby/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a976571eee0c9c92c92a9a7aff51ba65dec4d34ed504cc5b06bacae692187ce
|
4
|
+
data.tar.gz: 2e44e41d22b2361ac628fa84708b2695b9001390112fd7b9c7a36ad963163837
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1199dacfcb245d3a17800fa14d8b22106fbc6ad99d3b7a9a70335216081da036ac98ebf38d47c46e1136ed9a326a24f95e8bbfe44b2a7f9bcf1f395cf851c141
|
7
|
+
data.tar.gz: cc9649b387cba1004b14550564582afb4c9b85aa02353962113d32a75a6f9c93c229543e08bfc017c6cc1825983c8d9479a108f13dbcb9a27cfe7f1ec44a5756
|
data/README.md
CHANGED
@@ -12,3 +12,8 @@ See [gdal-ruby](https://github.com/zhm/gdal-ruby) for more informations
|
|
12
12
|
```
|
13
13
|
bundle add gdal3
|
14
14
|
```
|
15
|
+
|
16
|
+
## License
|
17
|
+
|
18
|
+
This gem is BSD. The .c and .cpp files in the ext/gdal-ruby directory are from GDAL. For more info,
|
19
|
+
See `ext/gdal-ruby/LICENSE` or visit [gdal.org](http://www.gdal.org/).
|
data/gdal3.gemspec
CHANGED
@@ -2,20 +2,28 @@
|
|
2
2
|
require File.expand_path('../lib/gdal-ruby/version', __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
|
-
gem.
|
6
|
-
gem.
|
7
|
-
|
8
|
-
gem.
|
9
|
-
gem.
|
5
|
+
gem.name = "gdal3"
|
6
|
+
gem.version = Gdal::Ruby::VERSION
|
7
|
+
|
8
|
+
gem.authors = ["Savater Sebastien", "Zac McCormick"]
|
9
|
+
gem.email = ["github.60k5k@simplelogin.co"]
|
10
|
+
|
11
|
+
gem.description = "GDAL/OGR bindings for ruby"
|
12
|
+
gem.summary = "GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL 3.x"
|
13
|
+
gem.homepage = "https://github.com/solutions-territoire/gdal-ruby"
|
14
|
+
gem.licenses = ["BSD"]
|
10
15
|
|
11
16
|
gem.files = `git ls-files`.split($\)
|
12
|
-
gem.extensions = [
|
13
|
-
|
17
|
+
gem.extensions = %w[
|
18
|
+
ext/gdal-ruby/gdal/extconf.rb
|
19
|
+
ext/gdal-ruby/gdalconst/extconf.rb
|
20
|
+
ext/gdal-ruby/ogr/extconf.rb
|
21
|
+
ext/gdal-ruby/osr/extconf.rb
|
22
|
+
]
|
23
|
+
|
14
24
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
25
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
-
gem.name = "gdal3"
|
17
26
|
gem.require_paths = ["lib"]
|
18
|
-
gem.version = Gdal::Ruby::VERSION
|
19
27
|
|
20
28
|
gem.add_development_dependency 'rake', ['>= 0']
|
21
29
|
gem.add_development_dependency 'rake-compiler', ['>= 0']
|
data/lib/gdal-ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gdal3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
+
- Savater Sebastien
|
7
8
|
- Zac McCormick
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
@@ -54,7 +55,7 @@ dependencies:
|
|
54
55
|
version: '0'
|
55
56
|
description: GDAL/OGR bindings for ruby
|
56
57
|
email:
|
57
|
-
-
|
58
|
+
- github.60k5k@simplelogin.co
|
58
59
|
executables: []
|
59
60
|
extensions:
|
60
61
|
- ext/gdal-ruby/gdal/extconf.rb
|
@@ -85,8 +86,9 @@ files:
|
|
85
86
|
- lib/gdal-ruby/version.rb
|
86
87
|
- lib/gdal.rb
|
87
88
|
- spec/gdal_spec.rb
|
88
|
-
homepage: https://github.com/
|
89
|
-
licenses:
|
89
|
+
homepage: https://github.com/solutions-territoire/gdal-ruby
|
90
|
+
licenses:
|
91
|
+
- BSD
|
90
92
|
metadata: {}
|
91
93
|
post_install_message:
|
92
94
|
rdoc_options: []
|
@@ -107,6 +109,6 @@ rubygems_version: 3.4.6
|
|
107
109
|
signing_key:
|
108
110
|
specification_version: 4
|
109
111
|
summary: GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL
|
110
|
-
|
112
|
+
3.x
|
111
113
|
test_files:
|
112
114
|
- spec/gdal_spec.rb
|