logstash-codec-edn_lines 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5173b573398dbcf21c3a44a43c170ed43c01e947
4
- data.tar.gz: 79511742fa68f7e940ba2d2ce8cf4e5329e64039
2
+ SHA256:
3
+ metadata.gz: 68af1ad1cba9f7f4d70a8bd74ef6bb5b6c2482b4d97147bb457fbf7cea5863bb
4
+ data.tar.gz: b7be101ba05f221950586f4e53eebbd4516f478e26a060ae8f92b540f55d0815
5
5
  SHA512:
6
- metadata.gz: 92ea390abf0fe54eac2c717a55e491056341791a15b1b0dbb6791f36c08b003b184acd331b69b265dc5fd42b601f8a74108bcf69146c547ca14c26721607a19c
7
- data.tar.gz: 9b34811fb9a6a6f0faab9aa78e4b695b92e115dfaec7aa4e628b0e8948219b6261c6ac0cad5faed2b398800489c1fc43fa55d61d9ddcde6cf7a04584d19bf1f6
6
+ metadata.gz: e9f7e8987de3e203a405e94ac45dd23241a641a8fedbd1ebcf76bd25c0c7dbcffd9e2ee7e559398905e73dc452aacf8051d9fbb3cda8c9d31ec3ac39c5962a22
7
+ data.tar.gz: 63da8548fb7d9b6819c8576a71d43181ea08b6038678ccaf6ab6d5bdedf13b5a4a0620f57a9f82b070f16955650ac02fc9e12a2efac2c64fb59c89de974c8b53
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,31 @@
1
+ :plugin: edn_lines
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
+ === Edn_lines codec plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+
24
+
25
+ [id="plugins-{type}s-{plugin}-options"]
26
+ ==== Edn_lines Codec Configuration Options
27
+
28
+ [cols="<,<,<",options="header",]
29
+ |=======================================================================
30
+ |Setting |Input type|Required
31
+ |=======================================================================
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-edn_lines'
4
- s.version = '3.0.2'
4
+ s.version = '3.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Codec to process EDN data"
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)/})
@@ -1,3 +1,4 @@
1
+ require "logstash/devutils/rspec/spec_helper"
1
2
  require "logstash/codecs/edn_lines"
2
3
  require "logstash/event"
3
4
  require "logstash/json"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-edn_lines
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
@@ -72,7 +72,9 @@ dependencies:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
- 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
75
+ description: This gem is a Logstash plugin required to be installed on top of the
76
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
77
+ gem is not a stand-alone program
76
78
  email: info@elastic.co
77
79
  executables: []
78
80
  extensions: []
@@ -84,6 +86,7 @@ files:
84
86
  - LICENSE
85
87
  - NOTICE.TXT
86
88
  - README.md
89
+ - docs/index.asciidoc
87
90
  - lib/logstash/codecs/edn_lines.rb
88
91
  - logstash-codec-edn_lines.gemspec
89
92
  - spec/codecs/edn_lines_spec.rb
@@ -109,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
112
  version: '0'
110
113
  requirements: []
111
114
  rubyforge_project:
112
- rubygems_version: 2.6.3
115
+ rubygems_version: 2.6.11
113
116
  signing_key:
114
117
  specification_version: 4
115
118
  summary: Codec to process EDN data