-
Notifications
You must be signed in to change notification settings - Fork 6
/
fluent-plugin-s3-alternative.gemspec
28 lines (25 loc) · 1.15 KB
/
fluent-plugin-s3-alternative.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-s3-alternative"
gem.version = "0.0.1"
gem.authors = ["Satoshi SUZUKI"]
gem.email = ["[email protected]"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = "https://github.com/studio3104/fluent-plugin-s3-alternative"
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.add_development_dependency "fluentd"
gem.add_development_dependency "fluent-mixin-plaintextformatter"
gem.add_development_dependency "aws-sdk"
gem.add_development_dependency "flexmock"
gem.add_runtime_dependency "fluentd"
gem.add_runtime_dependency "fluent-mixin-plaintextformatter"
gem.add_runtime_dependency "aws-sdk"
gem.add_runtime_dependency "flexmock"
gem.add_runtime_dependency "fluent-plugin-s3"
end