forked from scalyr/scalyr-fluentd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-scalyr.gemspec
23 lines (22 loc) · 1.07 KB
/
fluent-plugin-scalyr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-scalyr"
gem.summary = "Scalyr plugin for fluentd"
gem.description = "Sends log data collected by fluentd to Scalyr (http://www.scalyr.com)"
gem.homepage = "https://github.com/scalyr/scalyr-fluentd"
gem.version = File.read("VERSION").strip
gem.authors = ["Imron Alston"]
gem.licenses = ["Apache-2.0"]
gem.email = "imron@scalyr.com"
gem.has_rdoc = false
gem.platform = Gem::Platform::RUBY
gem.files = Dir['AUTHORS', 'Gemfile', 'LICENSE', 'README.md', 'Rakefile', 'VERSION', 'fluent-plugin-scalyr.gemspec', 'fluent.conf.sample', 'lib/**/*', 'test/**/*']
gem.test_files = Dir.glob("{test,spec,features}/**/*")
gem.executables = Dir.glob("bin/*").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency "fluentd", [">= 0.14.0", "< 2"]
gem.add_development_dependency "rake", "~> 0.9"
gem.add_development_dependency "test-unit", "~> 3.0"
gem.add_development_dependency "flexmock", "~> 1.2"
gem.add_development_dependency "bundler", "~> 1.9"
end