-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpylon.gemspec
48 lines (43 loc) · 1.59 KB
/
pylon.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
require "./lib/pylon.rb"
Gem::Specification.new do |s|
s.name = %q{pylon}
s.version = Pylon::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["AJ Christensen"]
s.date = %q{2011-09-19}
s.default_executable = %q{pylon}
s.description = %q{leader election with zeromq for ruby using widely available leader election algorithms, similar to gen_leader erlang project in essence}
s.email = %q{[email protected]}
s.executables = %w{pylon chef-solo-pylon}
s.extra_rdoc_files = [
"LICENSE",
"readme.md"
]
s.files = Dir["lib/**/*.rb"] + Dir["bin/*"] + Dir["cookbooks/**/*"]
s.homepage = %q{http://github.com/fujin/pylon}
s.licenses = ["APLv2"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{standalone leader election with zeromq for ruby}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
{ "bundler" => "~> 1.0.0",
"jeweler" => "~> 1.6.4",
"purdytest" => "~> 1.0.0",
"vagrant" => "~> 0.8"
}.each do |gem, version|
s.add_development_dependency(gem, [version])
end
{ "chef" => "~> 0.10.8",
"mixlib-log" => "~> 1.3.0",
"mixlib-cli" => "~> 1.2.2",
"mixlib-config" => "~> 1.1.2",
"uuidtools" => "~> 2.1.2",
"dcell" => "~> 0.8.0",
}.each do |gem, version|
s.add_runtime_dependency(gem, [version])
end
end
end
end