-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
rgeo-shapefile.gemspec
27 lines (20 loc) · 1.02 KB
/
rgeo-shapefile.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
require "./lib/rgeo/shapefile/version"
Gem::Specification.new do |spec|
spec.name = "rgeo-shapefile"
spec.summary = "An RGeo module for reading ESRI shapefiles."
spec.description = "RGeo is a geospatial data library for Ruby. RGeo::Shapefile is an optional RGeo module for reading the ESRI shapefile format, a common file format for geospatial datasets."
spec.authors = ["Daniel Azuma", "Tee Parham"]
spec.email = ["dazuma@gmail.com", "parhameter@gmail.com"]
spec.homepage = "http://github.com/rgeo/rgeo-shapefile"
spec.license = "BSD-3-Clause"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["lib/**/*.rb", "*.md", "LICENSE.txt"]
spec.version = RGeo::Shapefile::VERSION
spec.required_ruby_version = ">= 2.4.0"
spec.add_dependency "rgeo", ">= 1.0"
spec.add_dependency "dbf", ">= 4.0", "< 6.0"
spec.add_development_dependency "minitest", "~> 5.3"
spec.add_development_dependency "rubocop", "~> 1.36.0"
spec.add_development_dependency "rake", "~> 12.0"
end