-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstash-query.gemspec
25 lines (23 loc) · 1022 Bytes
/
stash-query.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
$:.push File.expand_path("../lib", __FILE__)
require 'stash-query/version'
Gem::Specification.new do |s|
s.name = 'stash-query'
s.version = Stashquery::VERSION
s.date = '2014-07-22'
s.homepage = "https://github.com/robbydyer/stash-query"
s.summary = "Gem for querying Logstash and exporting the results"
s.description = "Gem for querying Logstash and exporting the results."
s.authors = ["Robby Dyer"]
s.email = '[email protected]'
s.licenses = [ 'GPL-3.0' ]
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = [ 'lib' ]
s.add_runtime_dependency 'elasticsearch', '>=1.0.1'
s.add_runtime_dependency 'curb', '>= 0.8.5'
s.add_runtime_dependency 'faraday', '= 0.8.8'
s.add_runtime_dependency 'progress_bar'
s.add_runtime_dependency 'typhoeus', '= 0.6.6'
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
end