logstash-filter-math 1.0 → 1.1.0

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.
data/spec/spec_helper.rb CHANGED
@@ -1,2 +1,6 @@
1
1
  # encoding: utf-8
2
2
  require "logstash/devutils/rspec/spec_helper"
3
+
4
+ ENV["LOG_AT"].tap do |level|
5
+ LogStash::Logging::Logger::configure_logging(level) unless level.nil?
6
+ end
metadata CHANGED
@@ -1,33 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-math
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - Robin Clarke
7
+ - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-24 00:00:00.000000000 Z
11
+ date: 2018-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - ~>
16
+ - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '2.0'
18
+ version: '1.60'
19
+ - - "<="
20
+ - !ruby/object:Gem::Version
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - ~>
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
30
- - - '>='
36
+ - - ">="
31
37
  - !ruby/object:Gem::Version
32
38
  version: '0'
33
39
  name: logstash-devutils
@@ -35,23 +41,30 @@ dependencies:
35
41
  type: :development
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
- - - '>='
44
+ - - ">="
39
45
  - !ruby/object:Gem::Version
40
46
  version: '0'
41
- 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
42
- email: robin@robinclarke.net
47
+ description: This gem is a logstash plugin required to be installed on top of the
48
+ Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not
49
+ a stand-alone program
50
+ email: info@elastic.co
43
51
  executables: []
44
52
  extensions: []
45
53
  extra_rdoc_files: []
46
54
  files:
55
+ - CHANGELOG.md
56
+ - CONTRIBUTORS
47
57
  - Gemfile
48
58
  - LICENSE
49
59
  - README.md
60
+ - docs/index.asciidoc
50
61
  - lib/logstash/filters/math.rb
62
+ - lib/logstash/filters/math_calculation_elements.rb
63
+ - lib/logstash/filters/math_functions.rb
51
64
  - logstash-filter-math.gemspec
52
65
  - spec/filters/math_spec.rb
53
66
  - spec/spec_helper.rb
54
- homepage: http://www.elastics.co/guide/en/logstash/current/index.html
67
+ homepage: http://www.elastic.co/guide/en/logstash/current/index.html
55
68
  licenses:
56
69
  - Apache License (2.0)
57
70
  metadata:
@@ -63,17 +76,17 @@ require_paths:
63
76
  - lib
64
77
  required_ruby_version: !ruby/object:Gem::Requirement
65
78
  requirements:
66
- - - '>='
79
+ - - ">="
67
80
  - !ruby/object:Gem::Version
68
81
  version: '0'
69
82
  required_rubygems_version: !ruby/object:Gem::Requirement
70
83
  requirements:
71
- - - '>='
84
+ - - ">="
72
85
  - !ruby/object:Gem::Version
73
86
  version: '0'
74
87
  requirements: []
75
88
  rubyforge_project:
76
- rubygems_version: 2.4.5
89
+ rubygems_version: 2.6.13
77
90
  signing_key:
78
91
  specification_version: 4
79
92
  summary: Do simple math functions on numeric fields.