-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbig_brother.gemspec
34 lines (30 loc) · 1.49 KB
/
big_brother.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/big_brother/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Braintree"]
gem.email = ["[email protected]"]
gem.description = %q{IPVS backend supervisor}
gem.summary = %q{Process to monitor and update weights for servers in an IPVS pool}
gem.homepage = "https://github.com/braintree/big_brother"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "big_brother"
gem.require_paths = ["lib"]
gem.version = BigBrother::VERSION
gem.add_dependency "thin", "~> 1.6.1"
gem.add_dependency "async-rack", "~> 0.5.1"
gem.add_dependency "sinatra", "~> 1.0"
gem.add_dependency "rack-fiber_pool", "~> 0.9"
gem.add_dependency "eventmachine", "~> 1.0.0"
gem.add_dependency "em-http-request", "~> 1.0"
gem.add_dependency "em-synchrony", "~> 1.0"
gem.add_dependency "em-resolv-replace", "~> 1.1"
gem.add_dependency "em-syslog", "~> 0.0.2"
gem.add_dependency "kwalify", "~> 0.7.2"
gem.add_dependency "addressable", "~> 2.4.0"
gem.add_development_dependency "rspec", "~> 3.5.0"
gem.add_development_dependency "rack-test", "~> 0.6.1"
gem.add_development_dependency "rake", "< 11.0"
gem.add_development_dependency "rake_commit", "~> 0.13"
end