-
Notifications
You must be signed in to change notification settings - Fork 0
/
rgeo.gemspec
32 lines (26 loc) · 1.37 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
31
32
# frozen_string_literal: true
require_relative "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.authors = ["Daniel Azuma", "Tee Parham"]
spec.homepage = "https://github.com/rgeo/rgeo"
spec.required_ruby_version = ">= 2.5.0"
spec.license = "BSD-3-Clause"
spec.files = Dir["lib/**/*.rb", "ext/**/*.{rb,c,h}", "LICENSE.txt", "README.md", ".yardopts"]
spec.extensions = Dir["ext/*/extconf.rb"]
spec.add_development_dependency "ffi-geos", "~> 2.2"
spec.add_development_dependency "minitest", "~> 5.11"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rake-compiler", "~> 1.0"
spec.add_development_dependency "rubocop", "~> 1.8.1"
spec.add_development_dependency "yard", "~> 0.9"
end