-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsimplify_rb.gemspec
More file actions
21 lines (18 loc) · 877 Bytes
/
simplify_rb.gemspec
File metadata and controls
21 lines (18 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "simplify_rb/version"
Gem::Specification.new do |spec|
spec.name = "simplify_rb"
spec.version = SimplifyRb::VERSION
spec.authors = ["odlp"]
spec.description = "You can use this gem to reduce the number of points in a complex polyline / polygon, making use of an optimized Douglas-Peucker algorithm. Ruby port of Simplify.js."
spec.summary = "Polyline simplification library. Ruby port of Simplify.js."
spec.homepage = "https://github.com/odlp/simplify_rb"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "standard"
end