forked from giraffi/fluent-plugin-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-amqp.gemspec
More file actions
40 lines (34 loc) · 1.42 KB
/
fluent-plugin-amqp.gemspec
File metadata and controls
40 lines (34 loc) · 1.42 KB
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
# 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.required_ruby_version = '>= 2.1.0'
s.add_runtime_dependency(%q<fluentd>, [">= 0.14.8", "< 2"])
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"])
s.add_development_dependency(%q<shoulda>, [">= 3.5.0"])
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