itslog 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,7 +18,7 @@ module Itslog
18
18
  msg << "#{time.split.last} "
19
19
  msg << "#{namespace}: "
20
20
  msg << colors[5]
21
- msg << message.strip
21
+ msg << message.to_s.strip
22
22
 
23
23
  add_without_format(severity, msg, progname, &block)
24
24
  end
@@ -1,3 +1,3 @@
1
1
  module Itslog
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,8 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itslog
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.1.0
4
+ hash: 25
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 1
10
+ version: 0.1.1
6
11
  platform: ruby
7
12
  authors:
8
13
  - John Thomas Marino
@@ -10,7 +15,8 @@ autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
17
 
13
- date: 2011-04-29 00:00:00 Z
18
+ date: 2011-05-03 00:00:00 -04:00
19
+ default_executable:
14
20
  dependencies: []
15
21
 
16
22
  description: "\n `itslog` is a log formatter designed to aid rails development.\n\n The formatting will prepend all log statements with a colored header and additional information about the statement.\n\n [timestamp] [rails namespace]: [normal log], example:\n\n 15:16:32 action_view: Rendered layouts/_head.haml (8.5ms)\n\n In addition to more readable logs you can tail and grep specific parts of your application. example:\n\n tail -f log/development.log | grep active_record\n "
@@ -29,6 +35,7 @@ files:
29
35
  - lib/itslog/railtie.rb
30
36
  - lib/itslog/version.rb
31
37
  - lib/itslog.rb
38
+ has_rdoc: true
32
39
  homepage: http://github.com/johmas/itslog
33
40
  licenses: []
34
41
 
@@ -42,17 +49,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
42
49
  requirements:
43
50
  - - ">="
44
51
  - !ruby/object:Gem::Version
52
+ hash: 3
53
+ segments:
54
+ - 0
45
55
  version: "0"
46
56
  required_rubygems_version: !ruby/object:Gem::Requirement
47
57
  none: false
48
58
  requirements:
49
59
  - - ">="
50
60
  - !ruby/object:Gem::Version
61
+ hash: 3
62
+ segments:
63
+ - 0
51
64
  version: "0"
52
65
  requirements: []
53
66
 
54
67
  rubyforge_project: itslog
55
- rubygems_version: 1.7.2
68
+ rubygems_version: 1.3.7
56
69
  signing_key:
57
70
  specification_version: 3
58
71
  summary: itslog makes logs more useful for rails development