forked from fulcrumapp/shp-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshp.gemspec
23 lines (20 loc) · 1023 Bytes
/
shp.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/shp/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Zac McCormick"]
gem.email = ["[email protected]"]
gem.description = %q{ESRI Shapefile bindings for ruby using shapelib}
gem.summary = %q{ESRI Shapefile bindings for ruby using shapelib. Currently contains native extensions for ShapeLib 1.3}
gem.homepage = "https://github.com/spatialnetworks/shp-ruby"
gem.licenses = ['BSD']
gem.files = `git ls-files`.split($\)
gem.extensions = ['ext/shp/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 = "shp"
gem.require_paths = ['lib', 'ext']
gem.version = SHP::VERSION
gem.add_development_dependency 'rake', ['>= 0']
gem.add_development_dependency 'rake-compiler', ['>= 0']
gem.add_development_dependency 'rspec', ['>= 0']
end