-
Notifications
You must be signed in to change notification settings - Fork 3
/
geokdtree.gemspec
26 lines (22 loc) · 1.07 KB
/
geokdtree.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geokdtree/version'
Gem::Specification.new do |gem|
gem.name = "geokdtree"
gem.version = Geokdtree::VERSION
gem.authors = ["Colin Surprenant"]
gem.email = ["[email protected]"]
gem.description = "Ruby & JRuby gem with a fast k-d tree C implementation using FFI bindings with support for latitude/longitude and geo distance range search"
gem.summary = "Ruby & JRuby FFI gem with a fast k-d tree C implementation with geo support"
gem.homepage = "http://github.com/colinsurprenant/geokdtree"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.extensions = ["ext/geokdtree/Rakefile"]
gem.add_dependency 'rake'
gem.add_dependency 'ffi'
gem.add_dependency 'ffi-compiler'
gem.add_development_dependency 'rspec'
end