fluent-plugin-websocket 0.1.4 → 0.1.5
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.
- data/README.rdoc +8 -2
- data/fluent-plugin-websocket.gemspec +2 -2
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -43,10 +43,10 @@ If there are no websocket connections, this plugin silently discards data. You m
|
|
43
43
|
</match>
|
44
44
|
|
45
45
|
== Data format
|
46
|
-
[tag, timestamp,
|
46
|
+
[tag, timestamp, data\_object]
|
47
47
|
|
48
48
|
* tag is appended when <em>add_tag</em> option is true.
|
49
|
-
*
|
49
|
+
* timestamp is appended when <em>add_time</em> option is true.
|
50
50
|
|
51
51
|
=== Example
|
52
52
|
curl -X POST -d 'json={"action":"login","user":6}' http://localhost:8888/foo/bar
|
@@ -78,6 +78,12 @@ Extract data by {msgpack.js}[https://github.com/msgpack/msgpack-javascript].
|
|
78
78
|
4. Push to the branch (`git push origin my-new-feature`)
|
79
79
|
5. Create new Pull Request
|
80
80
|
|
81
|
+
== Recent changes
|
82
|
+
* 0.1.5 Fixed dependencies. (Thanks to {ca-gacky}[https://github.com/ca-gacky])
|
83
|
+
* 0.1.4 Changed json parser to yajl. (Thanks to {Kogarasi}[https://github.com/Kogarasi])
|
84
|
+
* 0.1.3 Bug fix.
|
85
|
+
* 0.1.2 Released gem.
|
86
|
+
|
81
87
|
== Copyright
|
82
88
|
|
83
89
|
Copyright:: Copyright (c) 2013 IZAWA Tetsu (@moccos)
|
@@ -3,7 +3,7 @@ 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.5"
|
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"
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
|
|
20
20
|
gem.add_development_dependency "fluentd"
|
21
21
|
gem.add_development_dependency "websocket-eventmachine-client"
|
22
22
|
gem.add_development_dependency "msgpack"
|
23
|
-
gem.add_runtime_dependency "yajl"
|
23
|
+
gem.add_runtime_dependency "yajl-ruby"
|
24
24
|
gem.add_runtime_dependency "fluentd"
|
25
25
|
gem.add_runtime_dependency "em-websocket"
|
26
26
|
end
|
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.5
|
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-10
|
12
|
+
date: 2013-11-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -76,7 +76,7 @@ dependencies:
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
- !ruby/object:Gem::Dependency
|
79
|
-
name: yajl
|
79
|
+
name: yajl-ruby
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|
81
81
|
none: false
|
82
82
|
requirements:
|