forked from SpringMT/fluent-plugin-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-ses.gemspec
26 lines (22 loc) · 953 Bytes
/
fluent-plugin-ses.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
# -*- 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-ses"
gem.version = "0.0.4"
gem.authors = ["Spring_MT"]
gem.email = ["[email protected]"]
gem.summary = %q{Fluent output plugin for AWS SES}
gem.homepage = "https://github.com/SpringMT/fluent-plugin-ses"
gem.rubyforge_project = "fluent-plugin-ses"
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_runtime_dependency "fluentd"
gem.add_runtime_dependency "fluent-mixin-plaintextformatter"
gem.add_runtime_dependency "aws-sdk", "< 2.0"
gem.description = <<description
Fluent output plugin for AWS SES
description
end