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: 0be9941ea9c8732431936d50bbf9b352547eee4b
4
- data.tar.gz: 686b13e25dd7558eb3587263f5f2a3fa74bd281d
3
+ metadata.gz: 9ced943fac630304939a9c74091f7487cac48f8b
4
+ data.tar.gz: 2026d66e681fc26bfa910511687603ca2fb39835
5
5
  SHA512:
6
- metadata.gz: dd25c241a54ed3cb5ad41ce237a5b525ffe07bed5d00be6b77cb981e96ce05d6b67b04b2fefa4c9cda3fda75931e5a18235af286719b5b1203c4a156e72b81db
7
- data.tar.gz: 3a1475fbd4e64f8991be31416fde99ab737114634e9735654f28647a51fa5be61edeb078a60797fb10b7a0cc608487976c7380c73b9359e09c5bc32960623d57
6
+ metadata.gz: d87385871572831872071c9b8da539002637fb49b55986f361ffaed5bd04e5a044635f9071c6b18c099e6e02b123a3c8145d4d825d9e3a322ca74a2889d3c828
7
+ data.tar.gz: 4c609b5fea9b034e6c5391a038e1a00b78a4e6f52d0cb9c097fab3d1705cce8e061f0ffefa925d2e92ef4602952a8d3caf226e9404294617f1dd941c83ba74be
@@ -5,4 +5,4 @@
5
5
  # Note to authors: this should not include dashes because 'gem' barfs if
6
6
  # you include a dash in the version string.
7
7
 
8
- LOGSTASH_CORE_EVENT_JAVA_VERSION = "2.3.0.snapshot1"
8
+ LOGSTASH_CORE_EVENT_JAVA_VERSION = "2.3.0.snapshot3"
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.snapshot1
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-10 00:00:00.000000000 Z
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.5
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