gdal 0.0.1
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.
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE +28 -0
- data/README.md +53 -0
- data/Rakefile +2 -0
- data/ext/gdal-ruby/LICENSE +253 -0
- data/ext/gdal-ruby/gdal/extconf.rb +16 -0
- data/ext/gdal-ruby/gdal/gdal.cpp +18660 -0
- data/ext/gdal-ruby/gdalconst/extconf.rb +15 -0
- data/ext/gdal-ruby/gdalconst/gdalconst.c +2261 -0
- data/ext/gdal-ruby/ogr/extconf.rb +17 -0
- data/ext/gdal-ruby/ogr/ogr.cpp +18900 -0
- data/ext/gdal-ruby/osr/extconf.rb +15 -0
- data/ext/gdal-ruby/osr/osr.cpp +10157 -0
- data/gdal.gemspec +19 -0
- data/lib/gdal-ruby/version.rb +5 -0
- data/lib/gdal.rb +4 -0
- metadata +67 -0
data/gdal.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/gdal-ruby/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Zac McCormick"]
|
6
|
+
gem.email = ["zac.mccormick@gmail.com"]
|
7
|
+
gem.description = %q{GDAL/OGR bindings for ruby}
|
8
|
+
gem.summary = %q{GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL 1.9.1}
|
9
|
+
gem.homepage = "https://github.com/zhm/gdal-ruby"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.extensions = ['ext/gdal-ruby/gdal/extconf.rb', 'ext/gdal-ruby/gdalconst/extconf.rb',
|
13
|
+
'ext/gdal-ruby/ogr/extconf.rb', 'ext/gdal-ruby/osr/extconf.rb']
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
gem.name = "gdal"
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
gem.version = Gdal::Ruby::VERSION
|
19
|
+
end
|
data/lib/gdal.rb
ADDED
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gdal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Zac McCormick
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-06-21 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: GDAL/OGR bindings for ruby
|
15
|
+
email:
|
16
|
+
- zac.mccormick@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions:
|
19
|
+
- ext/gdal-ruby/gdal/extconf.rb
|
20
|
+
- ext/gdal-ruby/gdalconst/extconf.rb
|
21
|
+
- ext/gdal-ruby/ogr/extconf.rb
|
22
|
+
- ext/gdal-ruby/osr/extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
files:
|
25
|
+
- .gitignore
|
26
|
+
- Gemfile
|
27
|
+
- LICENSE
|
28
|
+
- README.md
|
29
|
+
- Rakefile
|
30
|
+
- ext/gdal-ruby/LICENSE
|
31
|
+
- ext/gdal-ruby/gdal/extconf.rb
|
32
|
+
- ext/gdal-ruby/gdal/gdal.cpp
|
33
|
+
- ext/gdal-ruby/gdalconst/extconf.rb
|
34
|
+
- ext/gdal-ruby/gdalconst/gdalconst.c
|
35
|
+
- ext/gdal-ruby/ogr/extconf.rb
|
36
|
+
- ext/gdal-ruby/ogr/ogr.cpp
|
37
|
+
- ext/gdal-ruby/osr/extconf.rb
|
38
|
+
- ext/gdal-ruby/osr/osr.cpp
|
39
|
+
- gdal.gemspec
|
40
|
+
- lib/gdal-ruby/version.rb
|
41
|
+
- lib/gdal.rb
|
42
|
+
homepage: https://github.com/zhm/gdal-ruby
|
43
|
+
licenses: []
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options: []
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ! '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
requirements: []
|
61
|
+
rubyforge_project:
|
62
|
+
rubygems_version: 1.8.23
|
63
|
+
signing_key:
|
64
|
+
specification_version: 3
|
65
|
+
summary: GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL
|
66
|
+
1.9.1
|
67
|
+
test_files: []
|