Skip to content

Commit 49271de

Browse files
committed
Plugin structure change
1 parent 1540c66 commit 49271de

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Diff for: Rakefile

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
require "logstash/devutils/rake"
2+
require "logstash/devutils/rake"

Diff for: logstash-filter-grok.gemspec

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Gem::Specification.new do |s|
22

33
s.name = 'logstash-filter-grok'
4-
s.version = '0.1.0'
4+
s.version = '0.1.1'
55
s.licenses = ['Apache License (2.0)']
66
s.summary = "Parse arbitrary text and structure it."
7-
s.description = "Grok is currently the best way in logstash to parse crappy unstructured log data into something structured and queryable."
7+
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
88
s.authors = ["Elasticsearch"]
99
s.email = '[email protected]'
10-
s.homepage = "http://logstash.net/"
10+
s.homepage = "http://www.elasticsearch.org/guide/en/logstash/current/index.html"
1111
s.require_paths = ["lib"]
1212

1313
# Files
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.test_files = s.files.grep(%r{^(test|spec|features)/})
1818

1919
# Special flag to let us know this is actually a logstash plugin
20-
s.metadata = { "logstash_plugin" => "true", "group" => "filter" }
20+
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
2121

2222
# Gem dependencies
2323
s.add_runtime_dependency 'logstash', '>= 1.4.0', '< 2.0.0'
@@ -26,5 +26,6 @@ Gem::Specification.new do |s|
2626
s.add_runtime_dependency 'logstash-patterns-core'
2727
s.add_development_dependency 'logstash-devutils'
2828

29+
s.add_development_dependency 'logstash-devutils'
2930
end
3031

0 commit comments

Comments
 (0)