-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathfluent-plugin-cloudwatch.gemspec
More file actions
22 lines (21 loc) · 1.02 KB
/
fluent-plugin-cloudwatch.gemspec
File metadata and controls
22 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- 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-cloudwatch"
gem.version = "2.1.1"
gem.authors = ["Yusuke Nomura", "kenjiskywalker", "FUJIWARA Shunichiro"]
gem.email = ["yunomu@gmail.com", "git@kenjiskywalker.org", "fujiwara.shunichiro@gmail.com"]
gem.description = %q{Input plugin for AWS CloudWatch.}
gem.homepage = "https://github.com/yunomu/fluent-plugin-cloudwatch"
gem.summary = gem.description
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_dependency "fluentd", ">= 0.10.30"
gem.add_dependency "aws-sdk-cloudwatch", "~> 1"
gem.add_development_dependency "rake", ">= 0.9.2"
gem.add_development_dependency "test-unit", ">= 3.1.0"
gem.license = 'MIT'
end