forked from bloom-lang/bud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbud.gemspec
36 lines (32 loc) · 1.31 KB
/
bud.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
Gem::Specification.new do |s|
s.name = "bud"
s.version = "0.9.8"
s.authors = ["Peter Alvaro", "Neil Conway", "Joseph M. Hellerstein", "William R. Marczak", "Sriram Srinivasan"]
s.email = ["[email protected]"]
s.summary = "A prototype Bloom DSL for distributed programming."
s.homepage = "http://www.bloom-lang.org"
s.description = "A prototype of the Bloom distributed programming language as a Ruby DSL."
s.license = "BSD"
s.has_rdoc = true
s.required_ruby_version = '>= 1.8.7'
s.rubyforge_project = 'bloom-lang'
s.files = Dir['lib/**/*'] + Dir['bin/*'] + Dir['docs/**/*'] + Dir['examples/**/*'] + %w[README.md LICENSE History.txt]
s.executables = %w[rebl budplot budvis budtimelines budlabel]
s.default_executable = 'rebl'
s.add_dependency 'backports'
s.add_dependency 'eventmachine'
s.add_dependency 'fastercsv'
s.add_dependency 'getopt'
s.add_dependency 'msgpack'
s.add_dependency 'ruby-graphviz'
s.add_dependency 'ruby2ruby', '>= 2.0.1'
s.add_dependency 'ruby_parser', '>= 3.1.0'
s.add_dependency 'superators19'
s.add_dependency 'syntax'
s.add_dependency 'uuid'
s.add_dependency 'pg'
s.add_development_dependency 'minitest'
# Optional dependencies -- if we can't find these libraries, certain features
# will be disabled.
# s.add_dependency 'zookeeper', '>= 1.3.0'
end