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