forked from bruce/graphy
-
Notifications
You must be signed in to change notification settings - Fork 8
/
plexus.gemspec
28 lines (24 loc) · 871 Bytes
/
plexus.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
# -*- encoding: utf-8 -*-
require './lib/plexus/version'
Gem::Specification.new do |s|
s.name = %q{plexus}
s.version = Plexus::VERSION
s.authors = ["Bruce Williams", "Jean-Denis Vauguet <[email protected]>"]
s.summary = "A framework for graph data structures and algorithms."
s.description = %q{This library is based on GRATR and RGL.
Graph algorithms currently provided are:
* Topological Sort
* Strongly Connected Components
* Transitive Closure
* Rural Chinese Postman
* Biconnected
}
s.email = %q{[email protected]}
s.files = Dir["lib/**/*"] + Dir["vendor/**/*"] + Dir["spec/**/*"] + ["Gemfile", "LICENSE", "Rakefile", "README.md"]
s.homepage = %q{http://github.com/chikamichi/plexus}
s.add_dependency "rake"
s.add_dependency "activesupport"
s.add_dependency "facets"
s.add_development_dependency "rspec"
s.add_development_dependency "yard"
end