forked from kuldazbraslav/fluent-plugin-detect-exceptions
-
Notifications
You must be signed in to change notification settings - Fork 0
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
10 changed files
with
668 additions
and
674 deletions.
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
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
Gem::Specification.new do |gem| | ||
gem.name = 'fluent-plugin-detect-exceptions' | ||
gem.description = <<-eos | ||
gem.description = <<-DESCRIPTION | ||
Fluentd output plugin which detects exception stack traces in a stream of | ||
JSON log messages and combines all single-line messages that belong to the | ||
same stack trace into one multi-line message. | ||
This is an official Google Ruby gem. | ||
eos | ||
DESCRIPTION | ||
gem.summary = \ | ||
'fluentd output plugin for combining stack traces as multi-line JSON logs' | ||
gem.homepage = \ | ||
'https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions' | ||
gem.license = 'Apache-2.0' | ||
gem.version = '0.0.14' | ||
gem.version = '0.0.15' | ||
gem.authors = ['Stackdriver Agents'] | ||
gem.email = ['stackdriver-agents@google.com'] | ||
gem.required_ruby_version = Gem::Requirement.new('>= 2.0') | ||
gem.required_ruby_version = Gem::Requirement.new('>= 2.6') | ||
|
||
gem.files = Dir['**/*'].keep_if { |file| File.file?(file) } | ||
gem.test_files = gem.files.grep(/^(test)/) | ||
gem.require_paths = ['lib'] | ||
|
||
gem.add_runtime_dependency 'fluentd', '>= 0.10' | ||
|
||
gem.add_development_dependency 'flexmock', '~> 2.0' | ||
gem.add_development_dependency 'rake', '~> 10.3' | ||
gem.add_development_dependency 'rubocop', '= 0.42.0' | ||
gem.add_development_dependency 'rubocop', '= 1.48.1' | ||
gem.add_development_dependency 'test-unit', '~> 3.0' | ||
gem.add_development_dependency 'flexmock', '~> 2.0' | ||
end |
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
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
Oops, something went wrong.