object_logging 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/object_logging/log/rails_cache.rb +3 -1
- data/lib/object_logging/logger.rb +4 -0
- data/object_logging.gemspec +57 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{object_logging}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Christopher J. Bottaro"]
|
12
|
+
s.date = %q{2010-05-10}
|
13
|
+
s.description = %q{It's a pain to trudge through large log files. Sometimes you just want to see log messages for one particular object.}
|
14
|
+
s.email = %q{cjbottaro@alumni.cs.utexas.edu}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/object_logging.rb",
|
27
|
+
"lib/object_logging/log/base.rb",
|
28
|
+
"lib/object_logging/log/rails_cache.rb",
|
29
|
+
"lib/object_logging/log/rails_log.rb",
|
30
|
+
"lib/object_logging/log/stdout.rb",
|
31
|
+
"lib/object_logging/logger.rb",
|
32
|
+
"lib/object_logging/metaclass.rb",
|
33
|
+
"object_logging.gemspec",
|
34
|
+
"test/object_logging_test.rb",
|
35
|
+
"test/test_helper.rb"
|
36
|
+
]
|
37
|
+
s.homepage = %q{http://github.com/cjbottaro/object_logging}
|
38
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
39
|
+
s.require_paths = ["lib"]
|
40
|
+
s.rubygems_version = %q{1.3.6}
|
41
|
+
s.summary = %q{Super simple logging for objects.}
|
42
|
+
s.test_files = [
|
43
|
+
"test/object_logging_test.rb",
|
44
|
+
"test/test_helper.rb"
|
45
|
+
]
|
46
|
+
|
47
|
+
if s.respond_to? :specification_version then
|
48
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
49
|
+
s.specification_version = 3
|
50
|
+
|
51
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
52
|
+
else
|
53
|
+
end
|
54
|
+
else
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Christopher J. Bottaro
|
@@ -41,6 +41,7 @@ files:
|
|
41
41
|
- lib/object_logging/log/stdout.rb
|
42
42
|
- lib/object_logging/logger.rb
|
43
43
|
- lib/object_logging/metaclass.rb
|
44
|
+
- object_logging.gemspec
|
44
45
|
- test/object_logging_test.rb
|
45
46
|
- test/test_helper.rb
|
46
47
|
has_rdoc: true
|