-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfluent-plugin-logtail.gemspec
More file actions
27 lines (22 loc) · 985 Bytes
/
fluent-plugin-logtail.gemspec
File metadata and controls
27 lines (22 loc) · 985 Bytes
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
# -*- encoding: utf-8 -*-
require 'date'
Gem::Specification.new do |s|
s.name = 'fluent-plugin-logtail'
s.version = '0.2.1'
s.date = Date.today.to_s
s.summary = 'Logtail.com plugin for Fluentd'
s.description = 'Streams Fluentd logs to the Logtail.com logging service.'
s.authors = ['Logtail.com']
s.email = '[email protected]'
s.homepage = 'https://github.com/logtail/fluent-plugin-logtail'
s.license = 'ISC'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 2.4.0".freeze)
s.add_runtime_dependency('fluentd', '> 1', '< 2')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('test-unit', '~> 3.3.9')
s.add_development_dependency('webmock', '~> 2.3')
end