fluent-plugin-twitter 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27c9f5be45522bb729c5266ace0231cbccb65a37
4
- data.tar.gz: 7b32e97ddb99b89da9b06251bf32439c0b554844
3
+ metadata.gz: 44436b6ed95bb43d194078dc2deda45edcda6268
4
+ data.tar.gz: 8b05976c2067e0e89fdbf170c6bb8cce3bbc873c
5
5
  SHA512:
6
- metadata.gz: 3b304afba6506eb248ee00edb62851ccc3e933efbd950dfab06712be97bafc233d2fc2df255562be3871dfbcd92ba21670f25b32687084abb169e4bd6c78f023
7
- data.tar.gz: 8854284b3ab0960c9abb7a8f479f8fc9b835f0334981348586858e60ecee9e77d208bb7c07ce61a77bc808affd8ed0106081cb59f786fc2e0db11fccda668b7c
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.2"
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"
@@ -1,3 +1,5 @@
1
+ require "fluent/input"
2
+
1
3
  module Fluent
2
4
  class TwitterInput < Fluent::Input
3
5
  TIMELINE_TYPE = %w(userstream sampling location tracking)
@@ -1,3 +1,5 @@
1
+ require "fluent/output"
2
+
1
3
  class Fluent::TwitterOutput < Fluent::Output
2
4
  Fluent::Plugin.register_output('twitter', self)
3
5
 
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.2
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-03-02 00:00:00.000000000 Z
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.2
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