better-logging 0.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/better-logging.gemspec +15 -0
- data/lib/better-logging.rb +8 -0
- metadata +56 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'rubygems' unless defined?(Gem)
|
2
|
+
s = Gem::Specification.new do |s|
|
3
|
+
s.name="better-logging"
|
4
|
+
s.version="0.0.1"
|
5
|
+
s.summary="Small rails logging override to enhace the logging of rails actions by adding timestamp. This can be very useful for trouble shooting production websites"
|
6
|
+
s.author="Mahmoud Said"
|
7
|
+
s.email="mahmoud@modsaid.com"
|
8
|
+
s.homepage="http://www.modsaid.com/better-logging.html"
|
9
|
+
s.has_rdoc=false
|
10
|
+
|
11
|
+
s.files=[
|
12
|
+
"lib/better-logging.rb",
|
13
|
+
"better-logging.gemspec"
|
14
|
+
]
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: better-logging
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mahmoud Said
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-02-14 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: mahmoud@modsaid.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- lib/better-logging.rb
|
26
|
+
- better-logging.gemspec
|
27
|
+
has_rdoc: true
|
28
|
+
homepage: http://www.modsaid.com/better-logging.html
|
29
|
+
licenses: []
|
30
|
+
|
31
|
+
post_install_message:
|
32
|
+
rdoc_options: []
|
33
|
+
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: "0"
|
41
|
+
version:
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: "0"
|
47
|
+
version:
|
48
|
+
requirements: []
|
49
|
+
|
50
|
+
rubyforge_project:
|
51
|
+
rubygems_version: 1.3.5
|
52
|
+
signing_key:
|
53
|
+
specification_version: 3
|
54
|
+
summary: Small rails logging override to enhace the logging of rails actions by adding timestamp. This can be very useful for trouble shooting production websites
|
55
|
+
test_files: []
|
56
|
+
|