forked from zhm/gdal-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdal.gemspec
23 lines (20 loc) · 1.06 KB
/
gdal.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/gdal-ruby/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Zac McCormick"]
gem.email = ["[email protected]"]
gem.description = %q{GDAL/OGR bindings for ruby}
gem.summary = %q{GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL 1.9.1}
gem.homepage = "https://github.com/zhm/gdal-ruby"
gem.files = `git ls-files`.split($\)
gem.extensions = ['ext/gdal-ruby/gdal/extconf.rb', 'ext/gdal-ruby/gdalconst/extconf.rb',
'ext/gdal-ruby/ogr/extconf.rb', 'ext/gdal-ruby/osr/extconf.rb']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "gdal"
gem.require_paths = ["lib"]
gem.version = Gdal::Ruby::VERSION
gem.add_development_dependency 'rake', ['>= 0']
gem.add_development_dependency 'rake-compiler', ['>= 0']
gem.add_development_dependency 'rspec', ['>= 0']
end