forked from martinrehfeld/haproxy2rpm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
haproxy2rpm.gemspec
23 lines (21 loc) · 953 Bytes
/
haproxy2rpm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "haproxy2rpm/version"
Gem::Specification.new do |s|
s.name = "haproxy2rpm"
s.version = Haproxy2Rpm::VERSION
s.authors = ["Patrick Huesler", "Martin Rehfeld"]
s.email = ["patrick.huesler@wooga.com", "martin.rehfeld@wooga.com"]
s.homepage = "https://github.com/wooga/haproxy2rpm"
s.summary = "Sending haproxy logs to new relic rpm"
s.description = "Sending haproxy logs to new relic rpm"
s.add_dependency "newrelic_rpm", "3.4.0"
s.add_dependency "eventmachine-tail"
s.add_development_dependency "rake"
s.add_development_dependency "shoulda-context"
s.add_development_dependency "mocha"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end