forked from change/fluent-plugin-amplitude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-amplitude.gemspec
29 lines (25 loc) · 1.25 KB
/
fluent-plugin-amplitude.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
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-amplitude'
spec.version = '1.2.0'
spec.authors = ['Change.org']
spec.email = ['[email protected]']
spec.summary = 'Fluentd plugin to output event data to Amplitude'
spec.description = 'Fluentd plugin to output event data to Amplitude'
spec.homepage = 'https://github.com/change/fluent-plugin-amplitude'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'fluentd', '>= 0.10.55'
spec.add_runtime_dependency 'amplitude-api', '~> 0.0.9'
spec.add_runtime_dependency 'msgpack', '< 0.6.0'
spec.add_runtime_dependency 'statsd-ruby', '~> 1.0'
spec.add_development_dependency 'rake', '~> 11.3'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'test-unit', '~> 3.2', '>= 3.2.1'
spec.add_development_dependency 'rspec-mocks', '~> 3.5'
spec.add_development_dependency 'rubocop', '~> 0.52.0'
end