fluentd 0.10.1 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fluentd might be problematic. Click here for more details.

data/ChangeLog CHANGED
@@ -1,4 +1,11 @@
1
1
 
2
+ Release 0.10.2 - 2011/10/18
3
+
4
+ * Fixed EventStream#to_msgpack_stream (thanks CkReal)
5
+ * Added gemspec.required_ruby_version = '~> 1.9.2' (thanks sakuro)
6
+
7
+
8
+
2
9
  Release 0.10.1 - 2011/10/16
3
10
 
4
11
  * SetTimeKeyMixin accepts include_time_key parameter
data/Rakefile CHANGED
@@ -22,6 +22,7 @@ begin
22
22
  gemspec.files = Dir["bin/**/*", "lib/**/*", "test/**/*.rb"] +
23
23
  %w[fluent.conf VERSION AUTHORS Rakefile COPYING fluentd.gemspec]
24
24
  gemspec.executables = ['fluentd', 'fluent-cat', 'fluent-gem']
25
+ gemspec.required_ruby_version = '~> 1.9.2'
25
26
  end
26
27
  Jeweler::GemcutterTasks.new
27
28
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.1
1
+ 0.10.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fluentd}
8
- s.version = "0.10.1"
8
+ s.version = "0.10.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sadayuki Furuhashi"]
12
- s.date = %q{2011-10-16}
12
+ s.date = %q{2011-10-18}
13
13
  s.email = %q{frsyuki@gmail.com}
14
14
  s.executables = ["fluentd", "fluent-cat", "fluent-gem"]
15
15
  s.extra_rdoc_files = [
@@ -72,6 +72,7 @@ Gem::Specification.new do |s|
72
72
  s.homepage = %q{http://fluentd.org/}
73
73
  s.rdoc_options = ["--charset=UTF-8"]
74
74
  s.require_paths = ["lib"]
75
+ s.required_ruby_version = Gem::Requirement.new("~> 1.9.2")
75
76
  s.rubygems_version = %q{1.3.7}
76
77
  s.summary = %q{Fluent event collector}
77
78
  s.test_files = [
@@ -30,8 +30,8 @@ class EventStream
30
30
 
31
31
  def to_msgpack_stream
32
32
  out = ''
33
- each {|record|
34
- record.to_msgpack(out)
33
+ each {|time,record|
34
+ [time,record].to_msgpack(out)
35
35
  }
36
36
  out
37
37
  end
@@ -1,5 +1,5 @@
1
1
  module Fluent
2
2
 
3
- VERSION = '0.10.1'
3
+ VERSION = '0.10.2'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluentd
3
3
  version: !ruby/object:Gem::Version
4
- hash: 53
4
+ hash: 51
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
- - 1
10
- version: 0.10.1
9
+ - 2
10
+ version: 0.10.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sadayuki Furuhashi
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-10-16 00:00:00 +09:00
18
+ date: 2011-10-18 00:00:00 +09:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -191,12 +191,14 @@ require_paths:
191
191
  required_ruby_version: !ruby/object:Gem::Requirement
192
192
  none: false
193
193
  requirements:
194
- - - ">="
194
+ - - ~>
195
195
  - !ruby/object:Gem::Version
196
- hash: 3
196
+ hash: 55
197
197
  segments:
198
- - 0
199
- version: "0"
198
+ - 1
199
+ - 9
200
+ - 2
201
+ version: 1.9.2
200
202
  required_rubygems_version: !ruby/object:Gem::Requirement
201
203
  none: false
202
204
  requirements: