-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogstash-output-lmlogs.gemspec
More file actions
37 lines (27 loc) · 1.33 KB
/
Copy pathlogstash-output-lmlogs.gemspec
File metadata and controls
37 lines (27 loc) · 1.33 KB
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
28
29
30
31
32
33
34
35
36
37
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "logstash/outputs/version.rb"
Gem::Specification.new do |s|
s.name = 'logstash-output-lmlogs'
s.version = LmLogsLogstashPlugin::VERSION
s.licenses = ['Apache-2.0']
s.summary = "Logstash output plugin for LM Logs"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
s.authors = ["LogicMonitor"]
s.email = "support@logicmonitor.com"
s.homepage = "https://www.logicmonitor.com"
s.require_paths = ["lib"]
# Files
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','Gemfile']
# Tests
s.test_files = s.files.grep(%r{^(test|spec|features)/})
# Special flag to let us know this is actually a logstash plugin
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" , "rubygems_mfa_required" => "false"}
# Gem dependencies
#
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
s.add_runtime_dependency "logstash-codec-plain"
s.add_runtime_dependency 'manticore', '>= 0.5.2', '< 1.0.0'
s.add_development_dependency 'logstash-devutils'
s.add_development_dependency 'hashdiff', '>= 1.0.0'
end