forked from fluent/fluentd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluentd.gemspec
39 lines (33 loc) · 1.8 KB
/
fluentd.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
require File.expand_path('../lib/fluent/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluentd"
gem.version = Fluent::VERSION # see lib/fluent/version.rb
gem.authors = ["Sadayuki Furuhashi"]
gem.email = ["[email protected]"]
gem.description = %q{Fluentd is an open source data collector designed to scale and simplify log management. It can collect, process and ship many kinds of data in near real-time.}
gem.summary = %q{Fluentd event collector}
gem.homepage = "http://fluentd.org/"
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.require_paths = ["lib"]
gem.has_rdoc = false
gem.required_ruby_version = '>= 1.9.3'
gem.add_runtime_dependency("msgpack", [">= 0.5.11", "< 0.6.0"])
gem.add_runtime_dependency("json", [">= 1.4.3"])
gem.add_runtime_dependency("yajl-ruby", ["~> 1.0"])
gem.add_runtime_dependency("cool.io", [">= 1.2.2", "< 2.0.0"])
gem.add_runtime_dependency("http_parser.rb", [">= 0.5.1", "< 0.7.0"])
gem.add_runtime_dependency("sigdump", ["~> 0.2.2"])
gem.add_runtime_dependency("tzinfo", [">= 1.0.0"])
gem.add_runtime_dependency("tzinfo-data", [">= 1.0.0"])
gem.add_runtime_dependency("string-scrub", [">= 0.0.3"])
gem.add_development_dependency("rake", [">= 0.9.2"])
gem.add_development_dependency("flexmock")
gem.add_development_dependency("parallel_tests", [">= 0.15.3"])
gem.add_development_dependency("simplecov", ["~> 0.6.4"])
gem.add_development_dependency("rr", [">= 1.0.0"])
gem.add_development_dependency("timecop", [">= 0.3.0"])
gem.add_development_dependency("test-unit", ["~> 3.0.2"])
gem.add_development_dependency("test-unit-rr", ["~> 1.0.3"])
end