logging 1.4.2 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.4.3 / 2010-05-31
2
+
3
+ Bug Fixes
4
+ - rolling file appender calling "super" within a block [Sebastian Georgi]
5
+
1
6
  == 1.4.2 / 2010-04-18
2
7
 
3
8
  Bug Fixes
@@ -176,6 +176,8 @@ module Logging::Appenders
176
176
 
177
177
  private
178
178
 
179
+ alias :_write :write
180
+
179
181
  # call-seq:
180
182
  # write( event )
181
183
  #
@@ -188,7 +190,7 @@ module Logging::Appenders
188
190
  @layout.format(event) : event.to_s
189
191
  return if str.empty?
190
192
 
191
- @io.flock_sh { super(str) }
193
+ @io.flock_sh { _write(str) }
192
194
 
193
195
  if roll_required?
194
196
  @io.flock? {
data/version.txt CHANGED
@@ -1 +1 @@
1
- 1.4.2
1
+ 1.4.3
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 4
8
- - 2
9
- version: 1.4.2
8
+ - 3
9
+ version: 1.4.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Tim Pease
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-18 00:00:00 -06:00
17
+ date: 2010-05-31 00:00:00 -06:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -83,8 +83,8 @@ dependencies:
83
83
  segments:
84
84
  - 3
85
85
  - 4
86
- - 2
87
- version: 3.4.2
86
+ - 3
87
+ version: 3.4.3
88
88
  type: :development
89
89
  version_requirements: *id005
90
90
  description: |-