-
-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in lograge.gemspec | ||
gemspec path: '..' | ||
|
||
group :test do | ||
gem 'actionpack', '~> 7.1.0' | ||
gem 'activerecord', '~> 7.1.0' | ||
# logstash does not release any gems on rubygems, but they have two gemspecs within their repo. | ||
# Using the tag is an attempt of having a stable version to test against where we can ensure that | ||
# we test against the correct code. | ||
gem 'logstash-event', git: 'https://github.com/elastic/logstash', tag: 'v1.5.4' | ||
# logstash 1.5.4 is only supported with jrjackson up to 0.2.9 | ||
gem 'jrjackson', '~> 0.2.9', platforms: :jruby | ||
gem 'lines' | ||
gem 'thread_safe' | ||
end |