logstash-core-event-java 2.3.0.snapshot1-java → 2.3.0.snapshot3-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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ced943fac630304939a9c74091f7487cac48f8b
|
4
|
+
data.tar.gz: 2026d66e681fc26bfa910511687603ca2fb39835
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d87385871572831872071c9b8da539002637fb49b55986f361ffaed5bd04e5a044635f9071c6b18c099e6e02b123a3c8145d4d825d9e3a322ca74a2889d3c828
|
7
|
+
data.tar.gz: 4c609b5fea9b034e6c5391a038e1a00b78a4e6f52d0cb9c097fab3d1705cce8e061f0ffefa925d2e92ef4602952a8d3caf226e9404294617f1dd941c83ba74be
|
Binary file
|
data/spec/event_spec.rb
CHANGED
@@ -96,6 +96,14 @@ describe LogStash::Event do
|
|
96
96
|
e["[foo]"] = nil
|
97
97
|
expect(e.to_hash).to include("foo" => nil)
|
98
98
|
end
|
99
|
+
|
100
|
+
# BigDecinal is now natively converted by JRuby, see https://github.com/elastic/logstash/pull/4838
|
101
|
+
it "should set BigDecimal" do
|
102
|
+
e = LogStash::Event.new()
|
103
|
+
e["[foo]"] = BigDecimal.new(1)
|
104
|
+
expect(e["foo"]).to be_kind_of(BigDecimal)
|
105
|
+
expect(e["foo"]).to eq(BigDecimal.new(1))
|
106
|
+
end
|
99
107
|
end
|
100
108
|
|
101
109
|
context "timestamp" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-core-event-java
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.0.
|
4
|
+
version: 2.3.0.snapshot3
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ requirements:
|
|
84
84
|
- jar com.fasterxml.jackson.core:jackson-core, 2.7.1
|
85
85
|
- jar com.fasterxml.jackson.core:jackson-databind, 2.7.1-1
|
86
86
|
rubyforge_project:
|
87
|
-
rubygems_version: 2.4.
|
87
|
+
rubygems_version: 2.4.8
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: logstash-core-event-java - The core event component of logstash
|