fluent-plugin-twitter 0.5.2 → 0.5.3
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/README.md +4 -4
- data/fluent-plugin-twitter.gemspec +1 -1
- data/lib/fluent/plugin/in_twitter.rb +2 -0
- data/lib/fluent/plugin/out_twitter.rb +2 -0
- 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: 44436b6ed95bb43d194078dc2deda45edcda6268
|
4
|
+
data.tar.gz: 8b05976c2067e0e89fdbf170c6bb8cce3bbc873c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a097549ed7aaf9b38e88f9bfa442d4c04cfca0cfd01c333e3fff27777cbcb4dac3e5f61a69a63656d80dec39d4af73034a035788f2ed7c3546dd11718ad1414
|
7
|
+
data.tar.gz: 1d26f58723a292eaf81a14e068a3f8da226d60be0ab6b2844aee3c443228ea9c1575bd5a2e169b9362970ecbac7dbd11e41ccf78dfb3e0fcddebb80575db076f
|
data/README.md
CHANGED
@@ -9,11 +9,11 @@ Fluentd Input/Output plugin to process tweets with Twitter Streaming API.
|
|
9
9
|
before use, install dependent library as:
|
10
10
|
|
11
11
|
```
|
12
|
-
# for RHEL/CentOS
|
13
|
-
$ sudo yum -y install openssl-devel libcurl libcurl-devel
|
12
|
+
# for RHEL/CentOS (eventmachine requires build dependency)
|
13
|
+
$ sudo yum -y install gcc gcc-c++ openssl-devel libcurl libcurl-devel
|
14
14
|
|
15
|
-
# for Ubuntu/Debian
|
16
|
-
$ sudo apt-get install libssl-dev
|
15
|
+
# for Ubuntu/Debian (eventmachine requires build dependency)
|
16
|
+
$ sudo apt-get install build-essential libssl-dev
|
17
17
|
```
|
18
18
|
|
19
19
|
## Installation
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "fluent-plugin-twitter"
|
6
|
-
s.version = "0.5.
|
6
|
+
s.version = "0.5.3"
|
7
7
|
s.authors = ["Kentaro Yoshida"]
|
8
8
|
s.email = ["y.ken.studio@gmail.com"]
|
9
9
|
s.homepage = "https://github.com/y-ken/fluent-plugin-twitter"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-twitter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kentaro Yoshida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
138
|
rubyforge_project:
|
139
|
-
rubygems_version: 2.5
|
139
|
+
rubygems_version: 2.4.5
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: Fluentd Input/Output plugin to collect/process tweets with Twitter Streaming
|