-
Notifications
You must be signed in to change notification settings - Fork 0
/
rgeo.gemspec
30 lines (24 loc) · 1.2 KB
/
rgeo.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
28
29
30
# frozen_string_literal: true
require "./lib/rgeo/version"
Gem::Specification.new do |spec|
spec.name = "rgeo"
spec.summary = "RGeo is a geospatial data library for Ruby."
spec.description =
"RGeo is a geospatial data library for Ruby. It provides an implementation " \
"of the Open Geospatial Consortium's Simple Features Specification, used by " \
"most standard spatial/geographic data storage systems such as PostGIS. A " \
"number of add-on modules are also available to help with writing " \
"location-based applications using Ruby-based frameworks such as Ruby On Rails."
spec.version = RGeo::VERSION
spec.author = "Daniel Azuma, Tee Parham"
spec.email = "[email protected], [email protected]"
spec.homepage = "https://github.com/rgeo/rgeo"
spec.required_ruby_version = ">= 2.3.0"
spec.files = Dir["lib/**/*.rb", "ext/**/*.{rb,c,h}", "LICENSE.txt"]
spec.extensions = Dir["ext/*/extconf.rb"]
spec.add_development_dependency "ffi-geos", "~> 1.2"
spec.add_development_dependency "minitest", "~> 5.11"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "rake-compiler", "~> 1.0"
spec.add_development_dependency "rubocop", "~> 0.51"
end