cucover 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/cucover.gemspec +1 -1
- data/lib/cucover/logging_config.rb +14 -14
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/cucover.gemspec
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
Logging.configure do
|
2
|
-
logger('Cucover') do
|
3
|
-
|
4
|
-
|
5
|
-
end
|
6
|
-
|
7
|
-
appender('logfile') do
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
# logger('Cucover') do
|
3
|
+
# level :debug
|
4
|
+
# appenders 'logfile'
|
5
|
+
# end
|
6
|
+
#
|
7
|
+
# appender('logfile') do
|
8
|
+
# type 'File'
|
9
|
+
# level :debug
|
10
|
+
# filename File.dirname(__FILE__) + '/../../tmp/cucover.log'
|
11
|
+
# layout do
|
12
|
+
# type 'Pattern'
|
13
|
+
# pattern '[%d] %l %c : %m\n'
|
14
|
+
# end
|
15
|
+
# end
|
16
16
|
end
|