TwP-logging 0.9.8.2 → 1.0.0
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/History.txt +1 -1
- data/Rakefile +1 -0
- data/lib/logging.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
3 minor enhancements
|
|
7
7
|
- Added a YAML layout option
|
|
8
8
|
- Added a JSON layout option
|
|
9
|
-
- Cration of an "examples" directory
|
|
9
|
+
- Cration of an "examples" directory
|
|
10
10
|
1 bug fix
|
|
11
11
|
- Logging initialization happens implicitly when a logger, layout, or
|
|
12
12
|
appender is created
|
data/Rakefile
CHANGED
data/lib/logging.rb
CHANGED
|
@@ -30,7 +30,7 @@ begin require 'fastthread'; rescue LoadError; end
|
|
|
30
30
|
module Logging
|
|
31
31
|
|
|
32
32
|
# :stopdoc:
|
|
33
|
-
VERSION = '0.
|
|
33
|
+
VERSION = '1.0.0'
|
|
34
34
|
LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
|
|
35
35
|
PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
|
|
36
36
|
WIN32 = %r/djgpp|(cyg|ms|bcc)win|mingw/ =~ RUBY_PLATFORM
|