-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (20 loc) · 751 Bytes
/
Gemfile
File metadata and controls
27 lines (20 loc) · 751 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
source 'https://rubygems.org'
gemspec
logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
if Dir.exist?(logstash_path) && use_logstash_source
gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
end
group :test do
gem "webmock", "~> 3.18.1"
# Newer versions depend on Ruby >= 2.6
gem "rubocop", "~> 1.28.2"
# Require the specific version of `json` used in logstash while testing
gem 'json', '2.6.2'
end
gem 'pry'
gem 'pry-nav'
gem 'quantile', '~> 0.2.1'
gem 'manticore', '~> 0.9.1', platform: :jruby
gem 'jrjackson', '~> 0.4.15', platform: :jruby