fluent-plugin-websocket 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -0
- data/fluent-plugin-websocket.gemspec +2 -1
- metadata +4 -3
data/README.rdoc
CHANGED
@@ -79,6 +79,7 @@ Extract data by {msgpack.js}[https://github.com/msgpack/msgpack-javascript].
|
|
79
79
|
5. Create new Pull Request
|
80
80
|
|
81
81
|
== Recent changes
|
82
|
+
* 0.1.6 Added lisence to gemspec.
|
82
83
|
* 0.1.5 Fixed dependencies. (Thanks to {ca-gacky}[https://github.com/ca-gacky])
|
83
84
|
* 0.1.4 Changed json parser to yajl. (Thanks to {Kogarasi}[https://github.com/Kogarasi])
|
84
85
|
* 0.1.3 Bug fix.
|
@@ -3,13 +3,14 @@ lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.name = "fluent-plugin-websocket"
|
6
|
-
gem.version = "0.1.
|
6
|
+
gem.version = "0.1.6"
|
7
7
|
gem.authors = ["IZAWA Tetsu (@moccos)"]
|
8
8
|
gem.email = ["tt.izawa@gmail.com"]
|
9
9
|
gem.homepage = "https://github.com/moccos/fluent-plugin-websocket"
|
10
10
|
gem.summary = %q{Fluentd websocket output plugin}
|
11
11
|
gem.description = %q{Fluentd websocket output plugin which can output JSON string or MessagePack binary to the clients.}
|
12
12
|
gem.required_ruby_version = ">= 1.9.2"
|
13
|
+
gem.licenses = ["Apache License, Version 2.0"]
|
13
14
|
|
14
15
|
gem.files = `git ls-files`.split($/)
|
15
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-websocket
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-11-
|
12
|
+
date: 2013-11-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -140,7 +140,8 @@ files:
|
|
140
140
|
- lib/fluent/plugin/out_websocket.rb
|
141
141
|
- test/plugin/test_out_websocket.rb
|
142
142
|
homepage: https://github.com/moccos/fluent-plugin-websocket
|
143
|
-
licenses:
|
143
|
+
licenses:
|
144
|
+
- Apache License, Version 2.0
|
144
145
|
post_install_message:
|
145
146
|
rdoc_options: []
|
146
147
|
require_paths:
|