logstash-filter-wkt_repair 0.1.6 → 0.1.7

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
  SHA256:
3
- metadata.gz: e6032339c0a0e856124aa743eaf47cbebef6479bd440e0722c2138d7d507e44d
4
- data.tar.gz: 5f8c5a64d3707992043be6dd4604c3f80991b1f1b68669534aad6e1a5840b2b2
3
+ metadata.gz: d55eb4d11ada67b701d6c688b2d253ae535f1881e2bdeb4d43355568ce241e92
4
+ data.tar.gz: 6c4458247d7c4ec984fb306322fa04ed7e876c04e87f56ab6d75adbf2aef5f44
5
5
  SHA512:
6
- metadata.gz: f1d4580914c5d0d808c33decdb8eb6f24f51be6b75f4bd453482720415dcf161e133a2f64f2324730d9494fe957e7b4c7345953ab224879cd1cd6d9f96ecd198
7
- data.tar.gz: 11ae0b9153abf6f84c0bfc04ff82dbcea42bef4d48953a10851d9ffb016e443e0e19519e700edcca48a751637f0eb27387e26f974d4363c7b725bbcdf2db8978
6
+ metadata.gz: 112a258dad8495590e98a2f1f2a305dda4e3044f3b4bec12732dd2d2baf949623266ffa35fa336323867b0927e81c9933238f222ddac0901901ff651a0ccc589
7
+ data.tar.gz: '08f3b320cdf794ef6445ec3350b65cbeb5aed704b146c09c7ab6ddeed30a786cc857ad21bcf7c4750884675220a32be231a4563a3635813a999d0bfc7b404db2'
data/DEVELOPER.md CHANGED
@@ -46,4 +46,10 @@ bin/logstash-plugin install /your/local/plugin/logstash-filter-wkt_repair.gem
46
46
  ```
47
47
  - Start Logstash and proceed to using/testing the plugin
48
48
 
49
+ ### 3. Installing the plugin from rubyGems
50
+ - To install the plugin from rubyGems
51
+ ```sh
52
+ bin/logstash-plugin install logstash-filter-wkt_repair.gem
53
+ ```
54
+
49
55
  For walk through of developing Logstash filter plugin see https://www.elastic.co/guide/en/logstash/current/_how_to_write_a_logstash_filter_plugin.html
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # WKT Repair Logstash Filter
2
2
 
3
- Repairs WKTs on a Logstash event that are ambigous or ill-defined polygons and returns a coherent and clearly defined output.
3
+ [![Gem Version](https://badge.fury.io/rb/logstash-filter-wkt_repair.svg)](https://badge.fury.io/rb/logstash-filter-wkt_repair)
4
+
5
+ Repairs WKT Polygons/Multipolygons on a Logstash event that are ambiguous or ill-defined and returns a coherent and clearly defined output.
4
6
 
5
7
  Examples of ambigous or ill-defined polygons include, but not limited to:
6
8
 
@@ -96,4 +98,10 @@ bin/logstash-plugin install /your/local/plugin/logstash-filter-wkt_repair.gem
96
98
  ```
97
99
  - Start Logstash and proceed to using/testing the plugin
98
100
 
101
+ ### 3. Installing the plugin from rubyGems
102
+ - To install the plugin from rubyGems
103
+ ```sh
104
+ bin/logstash-plugin install logstash-filter-wkt_repair.gem
105
+ ```
106
+
99
107
  For walk through of developing Logstash filter plugin see https://www.elastic.co/guide/en/logstash/current/_how_to_write_a_logstash_filter_plugin.html
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-filter-wkt_repair'
3
- s.version = '0.1.6'
3
+ s.version = '0.1.7'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = 'Logstash filter to repair a WKT shape data.'
6
6
  s.description = 'It takes ambigous or ill-defined polygons and returns a coherent and clearly defined output.'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-wkt_repair
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Silver Ibenye