forked from giraffi/fluent-plugin-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-amqp.gemspec
45 lines (39 loc) · 1.54 KB
/
fluent-plugin-amqp.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "fluent-plugin-amqp"
s.version = File.read("VERSION")
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Hiromi Ishii", "Team Giraffi", "HiganWorks LLC", "Toby Jackson"]
s.description = "AMQP input/output plugin for fluentd"
s.email = "sawanoboriyu@higanworks.com"
s.extra_rdoc_files = [
"LICENSE.txt"
]
s.files = [
"lib/fluent/plugin/in_amqp.rb",
"lib/fluent/plugin/out_amqp.rb"
]
s.homepage = "http://github.com/giraffi/fluent-plugin-amqp"
s.licenses = ["Apache License, Version 2.0"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.25"
s.summary = "AMQP input/output plugin or fluentd"
s.add_runtime_dependency(%q<fluentd>)
if RUBY_VERSION < "2"
s.add_runtime_dependency(%q<amq-protocol>, ["< 2"])
s.add_runtime_dependency(%q<bunny>, ["< 2"])
s.add_runtime_dependency(%q<json>, ["< 2"])
else
s.add_runtime_dependency(%q<bunny>, [">= 1.7", "< 3"])
# We can use this for simple mocking, but only works on Ruby 2+
s.add_development_dependency(%q<bunny-mock>, [">= 1.0"])
end
s.add_development_dependency(%q<shoulda>)
s.add_development_dependency(%q<rake>)
s.add_development_dependency(%q<minitest>, ["< 5.0.0"])
s.add_development_dependency(%q<test-unit>, [">= 3.1.0"])
s.add_development_dependency(%q<simplecov>, [">= 0.10"])
end