better_logging 1.0.0 → 1.0.1
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/README.textile +3 -11
- data/better_logging.gemspec +3 -3
- metadata +2 -2
data/README.textile
CHANGED
@@ -119,16 +119,6 @@ It's a single point of failure, and it will become a scalability bottleneck. The
|
|
119
119
|
|
120
120
|
h2. Installation
|
121
121
|
|
122
|
-
h3. Rails 2.3.x
|
123
|
-
|
124
|
-
@./script/plugin install git://github.com/pauldowman/better_logging.git@
|
125
|
-
|
126
|
-
h3. Rails 3.0
|
127
|
-
|
128
|
-
@rails plugin install git://github.com/pauldowman/better_logging.git@
|
129
|
-
|
130
|
-
h3. Rails 3.2
|
131
|
-
|
132
122
|
Add to your Gemfile:
|
133
123
|
@gem 'better_logging'@
|
134
124
|
|
@@ -156,7 +146,9 @@ On OS X I like to use Console.app to view log files. It can load huge files easi
|
|
156
146
|
|
157
147
|
h2. Requirements
|
158
148
|
|
159
|
-
|
149
|
+
Rails 3.0+.
|
150
|
+
|
151
|
+
I haven't tested this on Rails 2.3.x since it became a RubyGem, so it might not work and I won't continue to support Rails 2. However, you can use the "Rails-2.3 branch":https://github.com/pauldowman/better_logging/tree/Rails-2.3 even though it probably won't be updated.
|
160
152
|
|
161
153
|
|
162
154
|
h2. How does it work?
|
data/better_logging.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
#
|
1
|
+
# encoding: UTF-8
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "better_logging"
|
6
|
-
s.version = "1.0.
|
6
|
+
s.version = "1.0.1"
|
7
7
|
s.authors = ["Paul Dowman"]
|
8
8
|
s.email = ["paul@pauldowman.com"]
|
9
9
|
s.homepage = "https://github.com/pauldowman/better_logging"
|
10
10
|
s.summary = %q{Better logging for Rails}
|
11
|
-
s.description = %q{A Rails plugin that improves the log format, and adds an optional
|
11
|
+
s.description = %q{A Rails plugin that improves the log format, and adds an optional "Exception" parameter to the warn() and error() methods to print a stack trace automatically.}
|
12
12
|
|
13
13
|
s.rubyforge_project = "better_logging"
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: better_logging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-02-10 00:00:00.000000000Z
|
13
13
|
dependencies: []
|
14
|
-
description: A Rails plugin that improves the log format, and adds an optional
|
14
|
+
description: A Rails plugin that improves the log format, and adds an optional "Exception"
|
15
15
|
parameter to the warn() and error() methods to print a stack trace automatically.
|
16
16
|
email:
|
17
17
|
- paul@pauldowman.com
|