loggability 0.14.0 → 0.15.0.pre20190714094638
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ChangeLog +607 -544
- data/Manifest.txt +3 -0
- data/Rakefile +2 -1
- data/lib/loggability.rb +2 -2
- data/lib/loggability/constants.rb +2 -2
- data/lib/loggability/formatter.rb +13 -67
- data/lib/loggability/formatter/color.rb +2 -2
- data/lib/loggability/formatter/default.rb +69 -6
- data/lib/loggability/formatter/html.rb +5 -5
- data/lib/loggability/logclient.rb +2 -1
- data/lib/loggability/logger.rb +3 -3
- data/lib/loggability/loghost.rb +2 -1
- data/lib/loggability/override.rb +2 -1
- data/lib/loggability/spechelpers.rb +1 -1
- data/spec/helpers.rb +3 -11
- data/spec/loggability/formatter/color_spec.rb +3 -7
- data/spec/loggability/formatter/html_spec.rb +7 -7
- data/spec/loggability/formatter_spec.rb +42 -29
- data/spec/loggability/logger_spec.rb +3 -3
- data/spec/loggability/loghost_spec.rb +3 -1
- data/spec/loggability/override_spec.rb +18 -5
- data/spec/loggability/spechelpers_spec.rb +3 -4
- data/spec/loggability_spec.rb +3 -1
- metadata +55 -37
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 207be54e5100e41c070a6b545448ea603ff0e8a7cf4754149a8c63ec0ed1afe7
|
4
|
+
data.tar.gz: e50d8153d2da1b21e27dbb919307c9812d6b786a7eb5b6f69a7e045d30c877d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21ca3115d9fd4a16515e8b30bad3ba981f3b4c2f42076338aa8008e4037ea408b70e3e90e4821be7f74083022e66075f480f18e4ae4a554a5d9ab1a0f6996a92
|
7
|
+
data.tar.gz: 02cf4ec3ad18e2f39ea9c1642f527c8e33fdeec54ae8ea109c5cef481d3adb3ef919c4282a317875ee1274ed97558824c7fef283e83e0c022a369a76f869a1ee
|
data/ChangeLog
CHANGED
@@ -1,621 +1,684 @@
|
|
1
|
+
2019-07-14 Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
@ * .gems, Manifest.txt, Rakefile, lib/loggability/formatter.rb,
|
4
|
+
| lib/loggability/formatter/default.rb,
|
5
|
+
| lib/loggability/formatter/html.rb,
|
6
|
+
| lib/loggability/formatter/structured.rb, lib/loggability/logger.rb,
|
7
|
+
| loggability.gemspec, spec/helpers.rb,
|
8
|
+
| spec/loggability/formatter/color_spec.rb,
|
9
|
+
| spec/loggability/formatter/default_spec.rb,
|
10
|
+
| spec/loggability/formatter/html_spec.rb,
|
11
|
+
| spec/loggability/formatter/structured_spec.rb,
|
12
|
+
| spec/loggability/formatter_spec.rb, spec/loggability/logger_spec.rb,
|
13
|
+
| spec/loggability/override_spec.rb,
|
14
|
+
| spec/loggability/spechelpers_spec.rb:
|
15
|
+
| Add a structured log formatter.
|
16
|
+
| [55ea9e745f4d] [tip]
|
17
|
+
|
|
18
|
+
2019-07-13 Michael Granger <ged@FaerieMUD.org>
|
19
|
+
|
20
|
+
o * .ruby-version, lib/loggability.rb, lib/loggability/constants.rb,
|
21
|
+
| lib/loggability/formatter.rb, lib/loggability/formatter/color.rb,
|
22
|
+
| lib/loggability/formatter/default.rb,
|
23
|
+
| lib/loggability/formatter/html.rb, lib/loggability/logclient.rb,
|
24
|
+
| lib/loggability/logger.rb, lib/loggability/loghost.rb,
|
25
|
+
| lib/loggability/override.rb, lib/loggability/spechelpers.rb,
|
26
|
+
| spec/helpers.rb, spec/loggability/formatter/color_spec.rb,
|
27
|
+
| spec/loggability/formatter/html_spec.rb,
|
28
|
+
| spec/loggability/formatter_spec.rb, spec/loggability/logger_spec.rb,
|
29
|
+
| spec/loggability/loghost_spec.rb, spec/loggability/override_spec.rb,
|
30
|
+
| spec/loggability/spechelpers_spec.rb, spec/loggability_spec.rb:
|
31
|
+
| Make literal strings frozen by default
|
32
|
+
| [0933e9ab9c01]
|
33
|
+
|
|
34
|
+
2018-10-10 Michael Granger <ged@FaerieMUD.org>
|
35
|
+
|
36
|
+
o * Rakefile:
|
37
|
+
| Correct the license in the gemspec
|
38
|
+
| [344d49c4eeb4]
|
39
|
+
|
|
40
|
+
o * .ruby-version:
|
41
|
+
| Update ruby version
|
42
|
+
| [1edcdf84d25e]
|
43
|
+
|
|
44
|
+
o * certs/ged.pem:
|
45
|
+
| Update my gem-signing cert
|
46
|
+
| [9bcfcf38c88c]
|
47
|
+
|
|
48
|
+
2017-02-06 Michael Granger <ged@FaerieMUD.org>
|
49
|
+
|
50
|
+
o * .hgtags:
|
51
|
+
| Added tag v0.14.0 for changeset f675b16e45fc
|
52
|
+
| [a3de2df1cd11]
|
53
|
+
|
|
54
|
+
o * .hgsigs:
|
55
|
+
| Added signature for changeset 500260d36bfb
|
56
|
+
| [f675b16e45fc] [v0.14.0]
|
57
|
+
|
|
58
|
+
2017-02-04 Michael Granger <ged@FaerieMUD.org>
|
59
|
+
|
60
|
+
o * History.rdoc, lib/loggability.rb, loggability.gemspec:
|
61
|
+
| Bump the minor version, update history.
|
62
|
+
| [500260d36bfb]
|
63
|
+
|
|
1
64
|
2017-01-30 Michael Granger <ged@FaerieMUD.org>
|
2
65
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
66
|
+
o * README.rdoc, lib/loggability.rb, lib/loggability/override.rb,
|
67
|
+
| loggability.gemspec, spec/loggability/override_spec.rb,
|
68
|
+
| spec/loggability_spec.rb:
|
69
|
+
| Allow overriding log hosts for a block
|
70
|
+
| [f8dc613a7b78]
|
71
|
+
|
|
9
72
|
2017-01-16 Michael Granger <ged@FaerieMUD.org>
|
10
73
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
74
|
+
o * Merge with 5a726b7f87db
|
75
|
+
|\ [f155ecfa1599]
|
76
|
+
| |
|
77
|
+
| o * README.md:
|
78
|
+
| | Backing out bitbucket README crap
|
79
|
+
| | [bdf3a19c7bd5]
|
80
|
+
| |
|
18
81
|
2016-12-28 Michael Granger <ged@faeriemud.org>
|
19
82
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
83
|
+
| o * README.md:
|
84
|
+
| | README.md edited online with Bitbucket
|
85
|
+
| | [a70fe4d1f1ce]
|
86
|
+
| |
|
24
87
|
2017-01-16 Mahlon E. Smith <mahlon@martini.nu>
|
25
88
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
2017-01-16 Mahlon E. Smith <mahlon@laika.com>
|
31
|
-
|
32
|
-
* .hgtags:
|
33
|
-
Added tag v0.13.0 for changeset 9dadd26fcb41
|
34
|
-
[f1b3d8191c22]
|
35
|
-
|
36
|
-
* .hgsigs:
|
37
|
-
Added signature for changeset 2676e38c8850
|
38
|
-
[9dadd26fcb41] [v0.13.0]
|
39
|
-
|
40
|
-
* History.rdoc, Rakefile, lib/loggability.rb:
|
41
|
-
Just a bump for the Configurability dependency.
|
42
|
-
[2676e38c8850]
|
43
|
-
|
89
|
+
o | * .hgsigs, .hgtags:
|
90
|
+
|\| Merge accidental branching.
|
91
|
+
| | [5a726b7f87db]
|
92
|
+
| |
|
44
93
|
2016-12-28 Michael Granger <ged@FaerieMUD.org>
|
45
94
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
95
|
+
| o * .hgtags:
|
96
|
+
| | Added tag v0.12.0 for changeset afbc62f64869
|
97
|
+
| | [724e4945be75]
|
98
|
+
| |
|
99
|
+
| o * .hgsigs:
|
100
|
+
| | Added signature for changeset f4e0960bd29c
|
101
|
+
| | [afbc62f64869] [v0.12.0]
|
102
|
+
| |
|
103
|
+
2017-01-16 Mahlon E. Smith <mahlon@laika.com>
|
53
104
|
|
105
|
+
o | * .hgtags:
|
106
|
+
| | Added tag v0.13.0 for changeset 9dadd26fcb41
|
107
|
+
| | [f1b3d8191c22]
|
108
|
+
| |
|
109
|
+
o | * .hgsigs:
|
110
|
+
| | Added signature for changeset 2676e38c8850
|
111
|
+
| | [9dadd26fcb41] [v0.13.0]
|
112
|
+
| |
|
113
|
+
o | * History.rdoc, Rakefile, lib/loggability.rb:
|
114
|
+
|/ Just a bump for the Configurability dependency.
|
115
|
+
| [2676e38c8850]
|
116
|
+
|
|
54
117
|
2016-12-14 Michael Granger <ged@FaerieMUD.org>
|
55
118
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
119
|
+
o * .hgignore, History.rdoc, Manifest.txt, Rakefile, lib/loggability.rb,
|
120
|
+
| loggability.gemspec:
|
121
|
+
| Bump minor version, update history file.
|
122
|
+
| [f4e0960bd29c]
|
123
|
+
|
|
124
|
+
o * lib/loggability/loghost.rb, spec/loggability/loghost_spec.rb:
|
125
|
+
| Re-fix the losthost inheritance thing the right way
|
126
|
+
| [a7afccbe2995]
|
127
|
+
|
|
128
|
+
o * .gems, .ruby-gemset, .ruby-version, .rvm.gems, .rvmrc:
|
129
|
+
| Switch to generic ruby version manager files
|
130
|
+
| [fdaab783b02d]
|
131
|
+
|
|
69
132
|
2016-12-12 Michael Granger <ged@FaerieMUD.org>
|
70
133
|
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
134
|
+
o * certs/ged.pem:
|
135
|
+
| Add my gem-signing cert
|
136
|
+
| [8460717ef6cf]
|
137
|
+
|
|
138
|
+
o * README.rdoc:
|
139
|
+
| Update copyright dates in the README.
|
140
|
+
| [42bfd41f3982]
|
141
|
+
|
|
142
|
+
o * lib/loggability.rb, spec/loggability/override_spec.rb,
|
143
|
+
| spec/loggability_spec.rb:
|
144
|
+
| Fix configuration so it's applied more consistently
|
145
|
+
| [6379f2040f92]
|
146
|
+
|
|
147
|
+
o * lib/loggability/loghost.rb:
|
148
|
+
| Don't make classes that inherit loghosts their own loghosts
|
149
|
+
| [e5f55d8d0f97]
|
150
|
+
|
|
88
151
|
2016-08-02 Michael Granger <ged@FaerieMUD.org>
|
89
152
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
153
|
+
o * lib/loggability.rb, spec/loggability_spec.rb:
|
154
|
+
| Post-configure log hosts created after config is loaded
|
155
|
+
| [ac36738fd7ee]
|
156
|
+
|
|
94
157
|
2015-03-01 Michael Granger <ged@FaerieMUD.org>
|
95
158
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
159
|
+
o * Manifest.txt, lib/loggability/logclient.rb, loggability.gemspec,
|
160
|
+
| spec/loggability_spec.rb:
|
161
|
+
| Clear the log proxy for duped/cloned log clients
|
162
|
+
| [a572fbf8440b]
|
163
|
+
|
|
164
|
+
o * Rakefile:
|
165
|
+
| Set the title on generated docs
|
166
|
+
| [433f9c68760f]
|
167
|
+
|
|
105
168
|
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
106
169
|
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
170
|
+
o * .hgignore, loggability.gemspec:
|
171
|
+
| Forgot to add the gemspec
|
172
|
+
| [13282fe8202d]
|
173
|
+
|
|
174
|
+
o * .rvmrc, .simplecov, .travis.yml, Gemfile, Rakefile:
|
175
|
+
| Prep for travis-ci builds
|
176
|
+
| [7c42a3ce53e6]
|
177
|
+
|
|
178
|
+
o * lib/loggability/formatter.rb, spec/loggability/formatter_spec.rb:
|
179
|
+
| Use the current thread's object ID and not the Thread class's
|
180
|
+
| [9d022ce39171]
|
181
|
+
|
|
119
182
|
2014-04-14 Michael Granger <ged@FaerieMUD.org>
|
120
183
|
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
184
|
+
o * .hgtags:
|
185
|
+
| Added tag v0.11.0 for changeset 430cb8049ae4
|
186
|
+
| [c26d488a0129]
|
187
|
+
|
|
188
|
+
o * .hgsigs:
|
189
|
+
| Added signature for changeset fa08d10cb3b6
|
190
|
+
| [430cb8049ae4] [v0.11.0]
|
191
|
+
|
|
129
192
|
2014-04-02 Michael Granger <ged@FaerieMUD.org>
|
130
193
|
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
194
|
+
o * History.rdoc, lib/loggability.rb:
|
195
|
+
| Bump the minor version, update history.
|
196
|
+
| [fa08d10cb3b6]
|
197
|
+
|
|
198
|
+
o * .hgignore, Rakefile, lib/loggability/logger.rb,
|
199
|
+
| lib/loggability/loghost.rb, spec/helpers.rb,
|
200
|
+
| spec/loggability/formatter/color_spec.rb,
|
201
|
+
| spec/loggability/formatter/html_spec.rb,
|
202
|
+
| spec/loggability/logger_spec.rb, spec/loggability/override_spec.rb:
|
203
|
+
| Fix a bug when a log host is subclassed.
|
204
|
+
|
|
205
|
+
| - Inheriting a log host now registers the subclass as its own log
|
206
|
+
| host.
|
207
|
+
| - Add a gemspec-building task.
|
208
|
+
| - Eliminated the last vestiges of deprecated RSpec syntax.
|
209
|
+
| [dc975db7ae50]
|
210
|
+
|
|
148
211
|
2014-03-24 Michael Granger <ged@FaerieMUD.org>
|
149
212
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
213
|
+
o * .hgtags:
|
214
|
+
| Added tag v0.10.1 for changeset ed0c5e115cac
|
215
|
+
| [ec646cc6977a]
|
216
|
+
|
|
217
|
+
o * .hgsigs:
|
218
|
+
| Added signature for changeset 24fd8762623d
|
219
|
+
| [ed0c5e115cac] [v0.10.1]
|
220
|
+
|
|
221
|
+
o * History.rdoc, lib/loggability.rb:
|
222
|
+
| Bump the patch version, update history.
|
223
|
+
| [24fd8762623d]
|
224
|
+
|
|
225
|
+
o * .rvm.gems, Gemfile, lib/loggability.rb, spec/loggability_spec.rb:
|
226
|
+
| Raise an exception when something attempts to use a non-existant log
|
227
|
+
| host.
|
228
|
+
| [bbbb41b5f199]
|
229
|
+
|
|
167
230
|
2014-02-04 Michael Granger <ged@FaerieMUD.org>
|
168
231
|
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
232
|
+
o * .hgtags:
|
233
|
+
| Added tag v0.10.0 for changeset 75f1eb53eefa
|
234
|
+
| [f87a413e30fd]
|
235
|
+
|
|
236
|
+
o * .hgsigs:
|
237
|
+
| Added signature for changeset b1250807b56e
|
238
|
+
| [75f1eb53eefa] [v0.10.0]
|
239
|
+
|
|
240
|
+
o * History.rdoc, lib/loggability.rb:
|
241
|
+
| Bump the minor version, update history.
|
242
|
+
| [b1250807b56e]
|
243
|
+
|
|
244
|
+
o * lib/loggability/logger.rb, spec/loggability/logger_spec.rb:
|
245
|
+
| Add a #write method to Loggability::Logger for Rack::CommonLogger
|
246
|
+
| compatibility.
|
247
|
+
| [b7911c961bb0]
|
248
|
+
|
|
186
249
|
2014-01-17 Michael Granger <ged@FaerieMUD.org>
|
187
250
|
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
251
|
+
o * .hgtags:
|
252
|
+
| Added tag v0.9.0 for changeset 6f90bce76e3b
|
253
|
+
| [978864d0a0f0]
|
254
|
+
|
|
255
|
+
o * .hgsigs:
|
256
|
+
| Added signature for changeset 05e0a87c92c7
|
257
|
+
| [6f90bce76e3b] [v0.9.0]
|
258
|
+
|
|
259
|
+
o * Gemfile:
|
260
|
+
| Update the Gemfile
|
261
|
+
| [05e0a87c92c7]
|
262
|
+
|
|
200
263
|
2014-01-08 Michael Granger <ged@FaerieMUD.org>
|
201
264
|
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
265
|
+
o * Rakefile:
|
266
|
+
| Use newer hoe plugin
|
267
|
+
| [5a465a2c0e79]
|
268
|
+
|
|
269
|
+
o * .rvm.gems:
|
270
|
+
| Update RVM gemset
|
271
|
+
| [ec28321ba712]
|
272
|
+
|
|
273
|
+
o * History.rdoc, lib/loggability.rb:
|
274
|
+
| Bump the minor version, update history.
|
275
|
+
| [469cf788e750]
|
276
|
+
|
|
277
|
+
o * spec/loggability/logger_spec.rb, spec/loggability/override_spec.rb,
|
278
|
+
| spec/loggability_spec.rb:
|
279
|
+
| Fix deprecated RSpec stuff
|
280
|
+
| [60116eaa175f]
|
281
|
+
|
|
219
282
|
2013-11-22 Michael Granger <ged@FaerieMUD.org>
|
220
283
|
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
284
|
+
o * Manifest.txt, README.rdoc, Rakefile, lib/loggability/spechelpers.rb,
|
285
|
+
| spec/helpers.rb, spec/loggability/spechelpers_spec.rb:
|
286
|
+
| Make the spechelpers a little more intelligent.
|
287
|
+
|
|
288
|
+
| - You no longer need to do setup_logging/reset_logging in a
|
289
|
+
| before(:all)/after(:all) block; that's done for you.
|
290
|
+
| - You can now override the logging level for any example group by
|
291
|
+
| adding 'logging' or 'log' metadata.
|
292
|
+
| - Fixed some documentation, added docs for the spec helpers.
|
293
|
+
| [c888220ef581]
|
294
|
+
|
|
232
295
|
2013-10-09 Michael Granger <ged@FaerieMUD.org>
|
233
296
|
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
297
|
+
o * .hgtags:
|
298
|
+
| Added tag v0.8.1 for changeset 9bf0ab5413b3
|
299
|
+
| [bfdae6012fa6]
|
300
|
+
|
|
301
|
+
o * .hgsigs:
|
302
|
+
| Added signature for changeset db603bf7b399
|
303
|
+
| [9bf0ab5413b3] [v0.8.1]
|
304
|
+
|
|
305
|
+
o * History.rdoc, lib/loggability.rb:
|
306
|
+
| Bump the patch version, update history.
|
307
|
+
| [db603bf7b399]
|
308
|
+
|
|
309
|
+
o * lib/loggability/override.rb, spec/loggability/override_spec.rb:
|
310
|
+
| Fix the problem with blocks not being called in chained overrides.
|
311
|
+
| [a3d578201547]
|
312
|
+
|
|
250
313
|
2013-10-07 Michael Granger <ged@FaerieMUD.org>
|
251
314
|
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
315
|
+
o * .hgtags:
|
316
|
+
| Added tag v0.8.0 for changeset 9e8338f511bf
|
317
|
+
| [d9e93e136b47]
|
318
|
+
|
|
319
|
+
o * .hgsigs:
|
320
|
+
| Added signature for changeset a4c6b86b7cbc
|
321
|
+
| [9e8338f511bf] [v0.8.0]
|
322
|
+
|
|
323
|
+
o * History.rdoc, lib/loggability.rb:
|
324
|
+
| Bump minor version, update history.
|
325
|
+
| [a4c6b86b7cbc]
|
326
|
+
|
|
264
327
|
2013-10-06 Michael Granger <ged@FaerieMUD.org>
|
265
328
|
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
329
|
+
o * .hgignore, Gemfile.lock:
|
330
|
+
| Remove generated file.
|
331
|
+
| [377006201c40]
|
332
|
+
|
|
333
|
+
o * loggability.gemspec:
|
334
|
+
| Remove generated file.
|
335
|
+
| [d18c5ee6d94a]
|
336
|
+
|
|
337
|
+
o * Manifest.txt, lib/loggability.rb, lib/loggability/override.rb,
|
338
|
+
| spec/loggability/override_spec.rb, spec/loggability_spec.rb:
|
339
|
+
| Fix some bugs in aggregated overrides.
|
340
|
+
|
|
341
|
+
| - Make cloning an override additive
|
342
|
+
| - Add missing ::with_level and ::formatted_with module methods to
|
343
|
+
| Loggability.
|
344
|
+
| - Clear overridden settings in dups of Override objects.
|
345
|
+
| - Update the manifest.
|
346
|
+
| [44b025b728e6]
|
347
|
+
|
|
348
|
+
o * README.rdoc, lib/loggability.rb, lib/loggability/logger.rb,
|
349
|
+
| lib/loggability/override.rb, spec/loggability/logger_spec.rb,
|
350
|
+
| spec/loggability/override_spec.rb, spec/loggability_spec.rb:
|
351
|
+
| Add mechanism for temporary aggregated overrides
|
352
|
+
| [a7d4b92e17f3]
|
353
|
+
|
|
291
354
|
2013-10-04 Michael Granger <ged@FaerieMUD.org>
|
292
355
|
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
356
|
+
o * Gemfile, Gemfile.lock, Rakefile, lib/loggability.rb,
|
357
|
+
| lib/loggability/logclient.rb, lib/loggability/loghost.rb,
|
358
|
+
| loggability.gemspec, spec/helpers.rb, spec/lib/helpers.rb,
|
359
|
+
| spec/loggability/formatter/color_spec.rb,
|
360
|
+
| spec/loggability/formatter/html_spec.rb,
|
361
|
+
| spec/loggability/formatter_spec.rb, spec/loggability/logger_spec.rb,
|
362
|
+
| spec/loggability_spec.rb:
|
363
|
+
| Update specs to use new RSpec syntax.
|
364
|
+
|
|
365
|
+
| - Split out LogHost and LogClient mixins into their own files
|
366
|
+
| - Added generated gemspec and Gemfile
|
367
|
+
| - Dropped support for Ruby < 1.9.3.
|
368
|
+
| [c67cab6ae3be]
|
369
|
+
|
|
307
370
|
2013-08-23 Michael Granger <ged@FaerieMUD.org>
|
308
371
|
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
372
|
+
o * .hgtags:
|
373
|
+
| Added tag v0.7.0 for changeset d0325195530a
|
374
|
+
| [6237423fc190]
|
375
|
+
|
|
376
|
+
o * .hgsigs:
|
377
|
+
| Added signature for changeset 7e7b1c51eb3e
|
378
|
+
| [d0325195530a] [v0.7.0]
|
379
|
+
|
|
380
|
+
o * History.rdoc, lib/loggability.rb:
|
381
|
+
| Bump minor version, update history.
|
382
|
+
| [7e7b1c51eb3e]
|
383
|
+
|
|
384
|
+
o * .rvm.gems, Rakefile, lib/loggability/logger.rb,
|
385
|
+
| spec/loggability/logger_spec.rb:
|
386
|
+
| Override Logger#<< to always append with formatting and level.
|
387
|
+
| [5404625dc822]
|
388
|
+
|
|
326
389
|
2013-06-07 Mahlon E. Smith <mahlon@martini.nu>
|
327
390
|
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
391
|
+
o * .hgtags:
|
392
|
+
| Added tag v0.6.1 for changeset f61e00b53f9d
|
393
|
+
| [26c3fbf32d31]
|
394
|
+
|
|
395
|
+
o * .hgsigs:
|
396
|
+
| Added signature for changeset 693e882b2e43
|
397
|
+
| [f61e00b53f9d] [v0.6.1]
|
398
|
+
|
|
399
|
+
o * History.rdoc:
|
400
|
+
| Update History file.
|
401
|
+
| [693e882b2e43]
|
402
|
+
|
|
403
|
+
o * Rakefile, lib/loggability.rb, spec/lib/helpers.rb,
|
404
|
+
| spec/loggability_spec.rb:
|
405
|
+
| Remove explicit loading of Configurability to avoid load order
|
406
|
+
| dependency issues.
|
407
|
+
| [27cc08ff66dc]
|
408
|
+
|
|
346
409
|
2013-03-15 Michael Granger <ged@FaerieMUD.org>
|
347
410
|
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
411
|
+
o * .hgtags:
|
412
|
+
| Added tag v0.6.0 for changeset 1d155d8069b5
|
413
|
+
| [4b93e1654b2c]
|
414
|
+
|
|
415
|
+
o * .hgsigs:
|
416
|
+
| Added signature for changeset 5475fac60ffb
|
417
|
+
| [1d155d8069b5] [v0.6.0]
|
418
|
+
|
|
419
|
+
o * History.rdoc, lib/loggability.rb:
|
420
|
+
| Bump minor version, update history.
|
421
|
+
| [5475fac60ffb]
|
422
|
+
|
|
360
423
|
2013-03-14 Michael Granger <ged@FaerieMUD.org>
|
361
424
|
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
425
|
+
o * bin/loggability:
|
426
|
+
| Remove stub bin/loggability binary
|
427
|
+
| [a74dbf110927]
|
428
|
+
|
|
429
|
+
o * .rvm.gems, .tm_properties, lib/loggability.rb,
|
430
|
+
| spec/loggability_spec.rb:
|
431
|
+
| Give instances of loghost classes logclient instance methods.
|
432
|
+
|
|
433
|
+
| - Reorganized the specs to separate loghost and logclient APIs
|
434
|
+
| - Rearranged the class/method declarations in loggability.rb.
|
435
|
+
| - Updated development dependencies.
|
436
|
+
| [a0ed85844756]
|
437
|
+
|
|
375
438
|
2013-02-25 Michael Granger <ged@FaerieMUD.org>
|
376
439
|
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
440
|
+
o * .rvmrc:
|
441
|
+
| Test under Ruby 2.0.0 by default.
|
442
|
+
| [8a951356ffb6]
|
443
|
+
|
|
381
444
|
2012-10-01 Michael Granger <ged@FaerieMUD.org>
|
382
445
|
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
446
|
+
o * Manifest.txt:
|
447
|
+
| Removing the bin/loggability stub binary.
|
448
|
+
| [f293013c3061]
|
449
|
+
|
|
387
450
|
2012-08-03 Michael Granger <ged@FaerieMUD.org>
|
388
451
|
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
452
|
+
o * .hgtags:
|
453
|
+
| Added tag v0.5.0 for changeset 7c52f83d7992
|
454
|
+
| [1fb0190d24b0]
|
455
|
+
|
|
456
|
+
o * .hgsigs:
|
457
|
+
| Added signature for changeset 0db162246900
|
458
|
+
| [7c52f83d7992] [v0.5.0]
|
459
|
+
|
|
460
|
+
o * History.rdoc, lib/loggability.rb:
|
461
|
+
| Bump minor version, update history.
|
462
|
+
| [0db162246900]
|
463
|
+
|
|
464
|
+
o * .rvm.gems, Rakefile, lib/loggability/formatter.rb,
|
465
|
+
| spec/loggability/formatter_spec.rb, spec/loggability_spec.rb:
|
466
|
+
| Remove dependency on PluginFactory/Pluggability to avoid circular
|
467
|
+
| dependency.
|
468
|
+
| [476b2ae85657]
|
469
|
+
|
|
407
470
|
2012-06-06 Michael Granger <ged@FaerieMUD.org>
|
408
471
|
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
472
|
+
o * .hgtags:
|
473
|
+
| Added tag v0.4.0 for changeset b5e9220fe7a9
|
474
|
+
| [740a4e834be2]
|
475
|
+
|
|
476
|
+
o * .hgsigs:
|
477
|
+
| Added signature for changeset 2615ed217d34
|
478
|
+
| [b5e9220fe7a9] [v0.4.0]
|
479
|
+
|
|
480
|
+
o * History.rdoc, lib/loggability.rb:
|
481
|
+
| Bump the minor version, update history.
|
482
|
+
| [2615ed217d34]
|
483
|
+
|
|
484
|
+
o * lib/loggability.rb, lib/loggability/logger.rb,
|
485
|
+
| spec/loggability/logger_spec.rb, spec/loggability_spec.rb:
|
486
|
+
| Add some conversion-convenience code.
|
487
|
+
|
|
488
|
+
| Auto-convert Logger instances into Loggability::Logger instances
|
489
|
+
| with the same device if assigned directly, etc.
|
490
|
+
| [943e0a67d246]
|
491
|
+
|
|
429
492
|
2012-05-26 Michael Granger <ged@FaerieMUD.org>
|
430
493
|
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
494
|
+
o * .hgtags:
|
495
|
+
| Added tag v0.3.0 for changeset 6c526d42bafb
|
496
|
+
| [581580843d12]
|
497
|
+
|
|
498
|
+
o * .hgsigs:
|
499
|
+
| Added signature for changeset 7b6ef57de872
|
500
|
+
| [6c526d42bafb] [v0.3.0]
|
501
|
+
|
|
502
|
+
o * History.rdoc, lib/loggability.rb:
|
503
|
+
| Bump the minor version, update history.
|
504
|
+
| [7b6ef57de872]
|
505
|
+
|
|
506
|
+
o * Manifest.txt, lib/loggability/spechelpers.rb, spec/lib/helpers.rb:
|
507
|
+
| Add Loggability::SpecHelpers for setting up logging in tests.
|
508
|
+
| [e9edf26e0c6a]
|
509
|
+
|
|
447
510
|
2012-05-22 Michael Granger <ged@FaerieMUD.org>
|
448
511
|
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
512
|
+
o * lib/loggability/formatter.rb, spec/loggability/formatter_spec.rb,
|
513
|
+
| spec/loggability/logger_spec.rb:
|
514
|
+
| Downcase the severity before outputting.
|
515
|
+
| [040bb1a5dc84]
|
516
|
+
|
|
454
517
|
2012-05-18 Michael Granger <ged@FaerieMUD.org>
|
455
518
|
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
519
|
+
o * .hgtags:
|
520
|
+
| Added tag v0.2.3 for changeset d221ee6a4c81
|
521
|
+
| [cc5441ff4666]
|
522
|
+
|
|
523
|
+
o * .hgsigs:
|
524
|
+
| Added signature for changeset 57511ffc4e23
|
525
|
+
| [d221ee6a4c81] [v0.2.3]
|
526
|
+
|
|
527
|
+
o * History.rdoc, lib/loggability.rb:
|
528
|
+
| Bumped patch version and updated history.
|
529
|
+
| [57511ffc4e23]
|
530
|
+
|
|
531
|
+
o * lib/loggability.rb, spec/loggability_spec.rb:
|
532
|
+
| Fix logging from subclasses of log clients.
|
533
|
+
|
|
534
|
+
| Thanks to Mahlon for spotting this and helping to track it down.
|
535
|
+
| [8b10cb643375]
|
536
|
+
|
|
474
537
|
2012-05-11 Michael Granger <ged@FaerieMUD.org>
|
475
538
|
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
539
|
+
o * .hgtags:
|
540
|
+
| Added tag v0.2.2 for changeset 7237a700fafc
|
541
|
+
| [a35c4d3abb52]
|
542
|
+
|
|
543
|
+
o * .hgsigs:
|
544
|
+
| Added signature for changeset e41140479376
|
545
|
+
| [7237a700fafc] [v0.2.2]
|
546
|
+
|
|
547
|
+
o * History.rdoc, lib/loggability.rb:
|
548
|
+
| Bump the patch version, update History.
|
549
|
+
| [e41140479376]
|
550
|
+
|
|
551
|
+
o * .tm_properties, lib/loggability.rb, lib/loggability/logger.rb:
|
552
|
+
| Log proxied Modules like Class objects, don't log config specs at
|
553
|
+
| errror.
|
554
|
+
| [72aefd428e62]
|
555
|
+
|
|
493
556
|
2012-05-10 Michael Granger <ged@FaerieMUD.org>
|
494
557
|
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
558
|
+
o * .hgtags:
|
559
|
+
| Added tag v0.2.1 for changeset cd911ef44cf0
|
560
|
+
| [9b09c935a496]
|
561
|
+
|
|
562
|
+
o * .hgsigs:
|
563
|
+
| Added signature for changeset 3d9dced14889
|
564
|
+
| [cd911ef44cf0] [v0.2.1]
|
565
|
+
|
|
566
|
+
o * History.rdoc, lib/loggability.rb:
|
567
|
+
| Bumped patch version, updated History.
|
568
|
+
| [3d9dced14889]
|
569
|
+
|
|
570
|
+
o * lib/loggability.rb, spec/loggability_spec.rb:
|
571
|
+
| Fix for configuration via Configurability::Config.
|
572
|
+
| [7eb1903dafa8]
|
573
|
+
|
|
574
|
+
o * .hgtags:
|
575
|
+
| Added tag v0.2.0 for changeset aa672f2fa207
|
576
|
+
| [6b09a660a076]
|
577
|
+
|
|
578
|
+
o * .hgsigs:
|
579
|
+
| Added signature for changeset 4c9840dcb9fd
|
580
|
+
| [aa672f2fa207] [v0.2.0]
|
581
|
+
|
|
582
|
+
o * History.rdoc, lib/loggability.rb:
|
583
|
+
| Fix 1.8 support.
|
584
|
+
| [4c9840dcb9fd]
|
585
|
+
|
|
586
|
+
o * .rvm.gems, README.rdoc, Rakefile, lib/loggability.rb,
|
587
|
+
| spec/lib/helpers.rb, spec/loggability/logger_spec.rb,
|
588
|
+
| spec/loggability_spec.rb:
|
589
|
+
| Add Configurability support.
|
590
|
+
| [555511f82876]
|
591
|
+
|
|
592
|
+
o * lib/loggability/logger.rb:
|
593
|
+
| Make Logger#inspect output a bit more terse
|
594
|
+
| [fbddf3595a38]
|
595
|
+
|
|
533
596
|
2012-05-08 Michael Granger <ged@FaerieMUD.org>
|
534
597
|
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
598
|
+
o * .hgtags:
|
599
|
+
| Added tag v0.1.0 for changeset 929216c0ffee
|
600
|
+
| [65953fe69af2]
|
601
|
+
|
|
602
|
+
o * .hgsigs:
|
603
|
+
| Added signature for changeset ea1633c450be
|
604
|
+
| [929216c0ffee] [v0.1.0]
|
605
|
+
|
|
606
|
+
o * History.rdoc, lib/loggability.rb:
|
607
|
+
| Bump minor version, update history.
|
608
|
+
| [ea1633c450be]
|
609
|
+
|
|
610
|
+
o * .hgignore, Rakefile, lib/loggability.rb,
|
611
|
+
| lib/loggability/constants.rb, lib/loggability/formatter/color.rb,
|
612
|
+
| lib/loggability/logger.rb, spec/loggability/formatter/html_spec.rb,
|
613
|
+
| spec/loggability/formatter_spec.rb, spec/loggability/logger_spec.rb:
|
614
|
+
| Remove all 1.9isms so it works under 1.8.x.
|
615
|
+
|
|
616
|
+
| I've been trying to do everything in 1.9 first, but it turns out
|
617
|
+
| there's still some 1.8 stuff that I need to support that I'd like to
|
618
|
+
| use this with.
|
619
|
+
| [e702bbec7c9d]
|
620
|
+
|
|
621
|
+
o * lib/loggability/formatter/color.rb:
|
622
|
+
| Fix the docs for the color formatter
|
623
|
+
| [4191fb2e0d14]
|
624
|
+
|
|
562
625
|
2012-05-07 Michael Granger <ged@FaerieMUD.org>
|
563
626
|
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
627
|
+
o * .hgtags:
|
628
|
+
| Added tag v0.0.2 for changeset 9a502152869e
|
629
|
+
| [984798ba8ace]
|
630
|
+
|
|
631
|
+
o * .hgsigs:
|
632
|
+
| Added signature for changeset 1099204b229f
|
633
|
+
| [9a502152869e] [v0.0.2]
|
634
|
+
|
|
635
|
+
o * History.rdoc, lib/loggability.rb:
|
636
|
+
| Bumped the patch version, updated History.
|
637
|
+
| [1099204b229f]
|
638
|
+
|
|
639
|
+
o * lib/loggability/formatter/html.rb, spec/lib/helpers.rb,
|
640
|
+
| spec/loggability/formatter/html_spec.rb:
|
641
|
+
| Fix escaping of the 'progname' in the HTML log formatter.
|
642
|
+
| [748e600c8037]
|
643
|
+
|
|
581
644
|
2012-05-06 Michael Granger <ged@FaerieMUD.org>
|
582
645
|
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
646
|
+
o * README.rdoc:
|
647
|
+
| Add some stuff to the README.
|
648
|
+
| [711c4dff84cf]
|
649
|
+
|
|
650
|
+
o * .hgtags:
|
651
|
+
| Added tag v0.0.1 for changeset 6dc36a56ff79
|
652
|
+
| [16d1a85c491d]
|
653
|
+
|
|
654
|
+
o * .hgsigs:
|
655
|
+
| Added signature for changeset 7eb43f3b1e1e
|
656
|
+
| [6dc36a56ff79] [v0.0.1]
|
657
|
+
|
|
658
|
+
o * History.rdoc, Manifest.txt, lib/loggability/formatter/html.rb,
|
659
|
+
| spec/lib/helpers.rb, spec/loggability/formatter/color_spec.rb,
|
660
|
+
| spec/loggability/formatter/html_spec.rb,
|
661
|
+
| spec/loggability/formatter_spec.rb, spec/loggability_spec.rb:
|
662
|
+
| Improve coverage.
|
663
|
+
| [7eb43f3b1e1e]
|
664
|
+
|
|
602
665
|
2012-05-05 Michael Granger <ged@FaerieMUD.org>
|
603
666
|
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
667
|
+
o * README.rdoc:
|
668
|
+
| Add some more stuff to the README
|
669
|
+
| [90cec90bbfe3]
|
670
|
+
|
|
671
|
+
o * .hgignore:
|
672
|
+
| Ignore the rubinius cache
|
673
|
+
| [f3207f533df4]
|
674
|
+
|
|
675
|
+
o * .hgignore, .pryrc, .rvm.gems, .rvmrc, History.rdoc, Manifest.txt,
|
676
|
+
README.rdoc, Rakefile, bin/loggability, lib/loggability.rb,
|
677
|
+
lib/loggability/constants.rb, lib/loggability/formatter.rb,
|
678
|
+
lib/loggability/formatter/color.rb,
|
679
|
+
lib/loggability/formatter/default.rb,
|
680
|
+
lib/loggability/formatter/html.rb, lib/loggability/logger.rb,
|
681
|
+
spec/lib/helpers.rb, spec/loggability/logger_spec.rb,
|
682
|
+
spec/loggability_spec.rb:
|
683
|
+
Initial commit
|
684
|
+
[7b3fcf97718a]
|