Sha256: 73d34c7882b47daeefe72d00b457d1959475ecc4bcbf48faf72c45a08b965dad
Contents?: true
Size: 825 Bytes
Versions: 1
Compression:
Stored size: 825 Bytes
Contents
Gem::Specification.new do |s| s.name = "kdtree" s.version = "0.4" s.authors = ["Adam Doppelt"] s.email = ["amd@gurge.com"] s.homepage = "http://github.com/gurgeous/kdtree" s.license = "MIT" s.summary = "Blazingly fast, native 2d kdtree." s.description = <<EOF A kdtree is a data structure that makes it possible to quickly solve the nearest neighbor problem. This is a native 2d kdtree suitable for production use with millions of points. EOF s.rubyforge_project = "kdtree" s.add_development_dependency "minitest", "~> 5.0" s.add_development_dependency "rake-compiler", "~> 1.0" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extensions = ["ext/kdtree/extconf.rb"] s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kdtree-0.4 | kdtree.gemspec |