logstash-input-twitter 1.0.0 → 1.0.1
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 +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/logstash/inputs/twitter.rb +2 -0
- data/logstash-input-twitter.gemspec +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f62f289e1b9bd6b6d3dee6d455261a03a9765531
|
|
4
|
+
data.tar.gz: 05f4f990d006d65b2077dbcb9a21c435f11981c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3e32235d0e06e317e0029b3936a2175943f00c59ebe844f901c013e25d6752cc6cb93e533d287d73807152a1a3c037954db994fe69efe2d08055d4206531ae9
|
|
7
|
+
data.tar.gz: 6ef349ece2a5a38d81e960512682cff205ea587611848f35de7d7517fb2b1903ba3edff807986e05becdcf40a9982f752ab02f8e78fcec8f4f53b5aed4ffebbd
|
data/CHANGELOG.md
CHANGED
|
@@ -106,6 +106,8 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
|
|
|
106
106
|
end
|
|
107
107
|
end
|
|
108
108
|
|
|
109
|
+
# Work around bugs in JrJackson. The standard serializer won't work till we upgrade
|
|
110
|
+
event["in-reply-to"] = nil if event["in-reply-to"].is_a?(Twitter::NullObject)
|
|
109
111
|
decorate(event)
|
|
110
112
|
queue << event
|
|
111
113
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-twitter'
|
|
4
|
-
s.version = '1.0.
|
|
4
|
+
s.version = '1.0.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Read events from the twitter streaming api."
|
|
7
7
|
s.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"
|
|
@@ -25,4 +25,3 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency 'logstash-devutils'
|
|
27
27
|
end
|
|
28
|
-
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-twitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-06-
|
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logstash-core
|
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
version: '0'
|
|
98
98
|
requirements: []
|
|
99
99
|
rubyforge_project:
|
|
100
|
-
rubygems_version: 2.
|
|
100
|
+
rubygems_version: 2.1.9
|
|
101
101
|
signing_key:
|
|
102
102
|
specification_version: 4
|
|
103
103
|
summary: Read events from the twitter streaming api.
|