-
Notifications
You must be signed in to change notification settings - Fork 59
/
rgl.gemspec
56 lines (43 loc) · 1.35 KB
/
rgl.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'rgl/version'
Gem::Specification.new do |s|
s.name = 'rgl'
s.version = RGL::VERSION
s.summary = "Ruby Graph Library"
s.description = "RGL is a framework for graph data structures and algorithms"
s.licenses = ['Ruby']
#### Dependencies and requirements.
s.add_dependency 'stream', '~> 0.5.3'
s.add_dependency 'pairing_heap', '>= 0.3', '< 4.0'
s.add_dependency 'rexml', '~> 3.2', '>= 3.2.4'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'yard', '~> 0.9'
s.add_development_dependency 'test-unit', '~> 3.5'
#### Which files are to be included in this gem?
s.files = Dir[
'lib/**/*.rb',
'CHANGELOG.md',
'examples/**/*',
'Gemfile',
'README.md',
'Rakefile',
'rakelib/*.rake',
'test/**/*.rb',
]
#### Load-time details: library and application (you will need one or both).
s.require_path = 'lib'
#### Documentation and testing.
s.extra_rdoc_files = ['README.md']
s.rdoc_options += [
'--title', 'RGL - Ruby Graph Library',
'--main', 'README.md',
'--line-numbers'
]
#### Author and project details.
s.authors = [
"Horst Duchene",
"Kirill Lashuk"
]
s.email = "monora@gmail.com"
s.homepage = "https://github.com/monora/rgl"
end