fluent-plugin-sflow 0.3.1 → 0.3.2

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
- SHA1:
3
- metadata.gz: 8dfd76f31da5aa793580f22832f9b0807a2e6d0d
4
- data.tar.gz: 91f433423deb0c5d41a54b01d51a310617fe81ac
2
+ SHA256:
3
+ metadata.gz: 3c72c0bca34e68d365fa55139bcc8e945b70284303b853c4bfa9d926b555fb35
4
+ data.tar.gz: ff4b3799a629087d007bc155842960d4ba0888dfa3291b7ccec9f2ddeb1288c1
5
5
  SHA512:
6
- metadata.gz: 2d9cdde40490a5ef9a231ac26d421e798ad66e8881393f7bc66b979e30985b742efdc029aeac49a9b964df6c7937bc87c139a6321bc509651b69d10b82ce0df2
7
- data.tar.gz: 70465903c489cd8ce7b0800babf73e80154bb8a35fd8b9a8ccc75365aed84de18be76108cd2716be3b022208b61fd63c68e853690832acec44ea2fdb01c22de7
6
+ metadata.gz: 3dbe8b2a963abd64670468774be6edc1a40e2ed30477b3db65d57719363061af0d6cff328273b66223ac4e5742a44f4c712f8ee73ec2d18ad48b8c70271f0392
7
+ data.tar.gz: '08ec620aae8b85910b25b0954f6ddf08b02f7edc561ed6e1bd8c260728eb1d94add272424f6d69808c85946e580e8f09d19d1182415fd88b404b526088e263fa'
data/.travis.yml CHANGED
@@ -12,6 +12,8 @@ matrix:
12
12
  rvm: 2.3
13
13
  - os: linux
14
14
  rvm: 2.4.0
15
+ - os: linux
16
+ rvm: 2.5.0
15
17
  - os: linux
16
18
  rvm: ruby-head
17
19
  allow_failures:
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Shintaro Kojima
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://travis-ci.org/codeout/fluent-plugin-sflow.svg?branch=fluentd-0.14)](https://travis-ci.org/codeout/fluent-plugin-sflow)
4
4
 
5
- ## This branch is valid only for Fluentd 0.14.x
5
+ ## This branch is valid for Fluentd 0.14.x or later
6
6
 
7
7
  See [0.12.x branch](https://github.com/codeout/fluent-plugin-sflow) for Fluentd 0.12.x.
8
8
 
@@ -103,7 +103,7 @@ See [sflowtool document](http://www.inmon.com/technology/sflowTools.php) for mor
103
103
 
104
104
  ## Requirement
105
105
 
106
- * Fluentd: 0.14.x
106
+ * Fluentd: 0.14.x or lator
107
107
  * See [0.12.x](https://github.com/codeout/fluent-plugin-sflow) branch for Fluentd 0.12.x.
108
108
 
109
109
  ## Install
@@ -271,6 +271,6 @@ Or send a pull request to fix.
271
271
 
272
272
  ## Copyright and License
273
273
 
274
- Copyright (c) 2017 Shintaro Kojima. Code released under the [MIT license](LICENSE.txt).
274
+ Copyright (c) 2018 Shintaro Kojima. Code released under the [MIT license](LICENSE.txt).
275
275
 
276
276
  Code includes a part of [sflowtool](http://www.inmon.com/technology/sflowTools.php) which is distributed in the [InMon sFlow License](http://www.inmon.com/technology/sflowlicense.txt).
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-sflow"
7
- spec.version = "0.3.1"
7
+ spec.version = "0.3.2"
8
8
  spec.authors = ["Shintaro Kojima"]
9
9
  spec.email = ["goodies@codeout.net"]
10
10
 
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ["lib"]
21
21
  spec.extensions = ["ext/sflowtool/extconf.rb"]
22
22
 
23
- spec.add_dependency "fluentd", "~>0.14.0"
23
+ spec.add_dependency "fluentd", "~>0.14.0", "< 2"
24
24
  spec.add_development_dependency "bundler", "~> 1.12"
25
25
  spec.add_development_dependency "rake", "~> 10.0"
26
26
  spec.add_development_dependency "rake-compiler", "~> 1.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-sflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shintaro Kojima
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-09 00:00:00.000000000 Z
11
+ date: 2018-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.14.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,6 +27,9 @@ dependencies:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
29
  version: 0.14.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: bundler
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -91,6 +97,7 @@ files:
91
97
  - ".gitignore"
92
98
  - ".travis.yml"
93
99
  - Gemfile
100
+ - LICENSE.txt
94
101
  - README.md
95
102
  - Rakefile
96
103
  - bin/console
@@ -124,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
131
  version: '0'
125
132
  requirements: []
126
133
  rubyforge_project:
127
- rubygems_version: 2.6.13
134
+ rubygems_version: 2.7.3
128
135
  signing_key:
129
136
  specification_version: 4
130
137
  summary: sFlow plugin for Fluentd