-
Notifications
You must be signed in to change notification settings - Fork 0
/
plextail.gemspec
23 lines (20 loc) · 1.01 KB
/
plextail.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
Gem::Specification.new do |spec|
spec.name = 'plextail'
spec.version = '0.0.4'
spec.authors = ['Pat Allan']
spec.email = ['[email protected]']
spec.summary = 'Pipes tailed files to Heroku Logplex'
spec.description = 'Takes tailed files in a single tail call and sends them through to Heroku Logplex with custom logplex tokens.'
spec.homepage = 'https://github.com/flying-sphinx/plextail'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
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 'faraday', '~> 0.8'
spec.add_development_dependency 'fakeweb', '~> 1.3.0'
spec.add_development_dependency 'fakeweb-matcher', '~> 1.2.2'
spec.add_development_dependency 'rake', '>= 10.0.4'
spec.add_development_dependency 'rspec', '~> 2.13.0'
end