-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathfluent-plugin-ec2-metadata.gemspec
28 lines (24 loc) · 1.17 KB
/
fluent-plugin-ec2-metadata.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-ec2-metadata"
spec.version = "0.1.3"
spec.authors = ["SAKAMOTO Takumi"]
spec.email = ["takumi.saka@gmail.com"]
spec.description = %q{Fluentd output plugin to add Amazon EC2 metadata fields to a event record}
spec.summary = %q{Fluentd output plugin to add Amazon EC2 metadata fields to a event record}
spec.homepage = "https://github.com/takus/fluent-plugin-ec2-metadata"
spec.license = "APLv2"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "fluentd", "> 0.14.0"
spec.add_runtime_dependency "oj"
spec.add_runtime_dependency "aws-sdk-ec2", "~> 1.1.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "vcr"
spec.add_development_dependency "webmock"
spec.add_development_dependency "test-unit", ">= 3.1.0"
end