logstash-codec-rubydebug 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4d95ab00b808353c7d45b9e4cff1c74e2a3459a7
4
- data.tar.gz: d4d4346e2e5c7d85230513b0b266d4acc1df8797
3
+ metadata.gz: 30d117031352d5755d1a0c29835587b7530546d1
4
+ data.tar.gz: 891e795879a007091ae3d5265a5dbd057ab52153
5
5
  SHA512:
6
- metadata.gz: c470a68ff1fd9cd24547808433d28284917eb9dc67b05f9d7f743095c6beb42ecab824788dc3445ded00a470328c5ea3772998ac10b4f5107221b6291a833af7
7
- data.tar.gz: c035d345b8e82a57717cfd4a16f5cd5aaaf2869719a4eef418ef04357cf1dafd200d6945f8d29d968504e750153c9ea168ec51d34d1213e870680c477a32baf8
6
+ metadata.gz: b2ed036536543944849411375121a07e8893fed14917e3bf50e5d15ad6f7f7897e32a0c5e28791b86082ccd9cda7950782ab6f979fe57296caa7dac109ed614c
7
+ data.tar.gz: 4fe528b81a5891030eb4aacb374eb5f9345efe65f53d0a55d29c9629deb8ebc81e9da064ccfea353cdff95802ef5fe220e1035df17a99fd01a750849c35ec81f
data/Gemfile CHANGED
@@ -1,4 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in logstash-mass_effect.gemspec
4
3
  gemspec
4
+
5
+ logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
6
+ use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
7
+
8
+ if Dir.exist?(logstash_path) && use_logstash_source
9
+ gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
10
+ gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
11
+ end
@@ -0,0 +1,46 @@
1
+ :plugin: rubydebug
2
+ :type: codec
3
+
4
+ ///////////////////////////////////////////
5
+ START - GENERATED VARIABLES, DO NOT EDIT!
6
+ ///////////////////////////////////////////
7
+ :version: %VERSION%
8
+ :release_date: %RELEASE_DATE%
9
+ :changelog_url: %CHANGELOG_URL%
10
+ :include_path: ../../../../logstash/docs/include
11
+ ///////////////////////////////////////////
12
+ END - GENERATED VARIABLES, DO NOT EDIT!
13
+ ///////////////////////////////////////////
14
+
15
+ [id="plugins-{type}-{plugin}"]
16
+
17
+ === Rubydebug codec plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ The rubydebug codec will output your Logstash event data using
24
+ the Ruby Awesome Print library.
25
+
26
+
27
+ [id="plugins-{type}s-{plugin}-options"]
28
+ ==== Rubydebug Codec Configuration Options
29
+
30
+ [cols="<,<,<",options="header",]
31
+ |=======================================================================
32
+ |Setting |Input type|Required
33
+ | <<plugins-{type}s-{plugin}-metadata>> |<<boolean,boolean>>|No
34
+ |=======================================================================
35
+
36
+ &nbsp;
37
+
38
+ [id="plugins-{type}s-{plugin}-metadata"]
39
+ ===== `metadata`
40
+
41
+ * Value type is <<boolean,boolean>>
42
+ * Default value is `false`
43
+
44
+ Should the event's metadata be included?
45
+
46
+
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-rubydebug'
4
- s.version = '3.0.2'
4
+ s.version = '3.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "The rubydebug codec will output your Logstash event data using the Ruby Awesome Print library."
7
7
  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"
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.require_paths = ["lib"]
12
12
 
13
13
  # Files
14
- s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+ s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
15
15
 
16
16
  # Tests
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-rubydebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -70,6 +70,7 @@ files:
70
70
  - LICENSE
71
71
  - NOTICE.TXT
72
72
  - README.md
73
+ - docs/index.asciidoc
73
74
  - lib/logstash/codecs/rubydebug.rb
74
75
  - logstash-codec-rubydebug.gemspec
75
76
  - spec/codecs/rubydebug_spec.rb
@@ -95,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
96
  version: '0'
96
97
  requirements: []
97
98
  rubyforge_project:
98
- rubygems_version: 2.6.3
99
+ rubygems_version: 2.4.8
99
100
  signing_key:
100
101
  specification_version: 4
101
102
  summary: The rubydebug codec will output your Logstash event data using the Ruby Awesome Print library.