logstash-filter-i18n 3.0.0-java → 3.0.1-java

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
2
  SHA1:
3
- metadata.gz: 27ebe1386ec41f97ab10d4004343814363eb0cad
4
- data.tar.gz: 84f9f73ab125543073d321cde49a62ea63628b17
3
+ metadata.gz: e44236838cd84adf0480010828ac90bbd29c5a7c
4
+ data.tar.gz: d15295a1e1ab9ab9d8787e75d7624e358dcdbe00
5
5
  SHA512:
6
- metadata.gz: 4f332391ca198d9b63142a561ac61edb34279242e2a72998338bef02d94128a23090df550af1fa4b9fdbaca6bbe00894db5644efce5cda209ed638c2659f3a9d
7
- data.tar.gz: 95c324f5afcea87e637be8c0ff08e396bad69b363ba571c06ca104dd8f9026b3fef5c16eed2b90644c4725ba7dafd3048a8dc07327168811601ff2ad91ea1c95
6
+ metadata.gz: 5c673d7b489b055b85c7313173d39cfeabb40d2fcd8a63145806b84e9ecb5a56e771b680534a8989b3d988ab4c97f51107e2f3794571185499abeb3c777c4ad6
7
+ data.tar.gz: 64003adc9d168d8d0743423f40beddec55a81ddf53f4363d8a6745adf8e54e1c38d35ed0b7473c493256e0d049732d7c6b4b024f7aeffd6c4dcf7e9f71e7d767
data/Gemfile CHANGED
@@ -1,2 +1,11 @@
1
1
  source 'https://rubygems.org'
2
- gemspec
2
+
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,62 @@
1
+ :plugin: i18n
2
+ :type: filter
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
+ === I18n filter plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ The i18n filter allows you to remove special characters
24
+ from a field
25
+
26
+ [id="plugins-{type}s-{plugin}-options"]
27
+ ==== I18n Filter Configuration Options
28
+
29
+ This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
30
+
31
+ [cols="<,<,<",options="header",]
32
+ |=======================================================================
33
+ |Setting |Input type|Required
34
+ | <<plugins-{type}s-{plugin}-transliterate>> |<<array,array>>|No
35
+ |=======================================================================
36
+
37
+ Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
38
+ filter plugins.
39
+
40
+ &nbsp;
41
+
42
+ [id="plugins-{type}s-{plugin}-transliterate"]
43
+ ===== `transliterate`
44
+
45
+ * Value type is <<array,array>>
46
+ * There is no default value for this setting.
47
+
48
+ Replaces non-ASCII characters with an ASCII approximation, or
49
+ if none exists, a replacement character which defaults to `?`
50
+
51
+ Example:
52
+ [source,ruby]
53
+ filter {
54
+ i18n {
55
+ transliterate => ["field1", "field2"]
56
+ }
57
+ }
58
+
59
+
60
+
61
+ [id="plugins-{type}s-{plugin}-common-options"]
62
+ include::{include_path}/{type}.asciidoc[]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-i18n'
4
- s.version = '3.0.0'
4
+ s.version = '3.0.1'
5
5
  s.platform = 'java'
6
6
  s.licenses = ['Apache-2.0']
7
7
  s.summary = "The i18n filter allows you to remove special characters from a field"
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.require_paths = ["lib"]
13
13
 
14
14
  # Files
15
- s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
15
+ s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
16
16
 
17
17
  # Tests
18
18
  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-filter-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-26 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/filters/i18n.rb
74
75
  - logstash-filter-i18n.gemspec
75
76
  - spec/filters/i18n_spec.rb