forked from pangloss/pacer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpacer.gemspec
23 lines (20 loc) · 819 Bytes
/
pacer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pacer/version"
Gem::Specification.new do |s|
s.name = "pacer"
s.version = Pacer::VERSION
s.platform = 'java'
s.authors = ["Darrick Wiebe"]
s.email = "[email protected]"
s.homepage = "http://github.com/pangloss/pacer"
s.license = "MIT"
s.summary = %Q{A very efficient and easy to use graph traversal engine.}
s.description = %Q{Pacer defines composeable routes through a graph and then traverses them very quickly.}
s.files = `git ls-files`.split("\n") + ['lib/pacer-ext.jar']
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
s.add_dependency "lock_jar", "~> 0.10.2"
s.add_development_dependency 'xn_gem_release_tasks'
s.add_development_dependency "rake-compiler", "~> 0.9.2"
end