-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathturf-ruby.gemspec
29 lines (24 loc) · 1.06 KB
/
turf-ruby.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
# frozen_string_literal: true
require_relative "lib/turf/version"
Gem::Specification.new do |spec|
spec.name = "turf-ruby"
spec.version = Turf::VERSION
spec.authors = ["Rafael Santos"]
spec.email = ["santos@rafael.nz"]
spec.summary = "A modular geospatial engine. Ruby port of TurfJS."
spec.description = [
"Turf Ruby is a Ruby library for spatial analysis. ",
"It includes traditional spatial operations, helper functions for creating",
" GeoJSON data, and data classification and statistics tools.",
].join
spec.homepage = "http://github.com/formigarafa/turf-ruby"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["documentation_uri"] = "https://formigarafa.github.io/turf-ruby/"
spec.files = Dir["lib/**/*.rb"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end