EasyLogger 0.1.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/.gitignore +10 -0
- data/EasyLogger.gemspec +28 -0
- data/EasyLogger.rdoc +62 -0
- data/Gemfile +21 -0
- data/README.rdoc +64 -0
- data/Rakefile +71 -0
- data/bin/EasyLogger +104 -0
- data/doc/ArubaOverrides.html +204 -0
- data/doc/EasyLogger.html +130 -0
- data/doc/EasyLogger/EasyLogger.html +188 -0
- data/doc/EasyLogger_rdoc.html +207 -0
- data/doc/File.html +208 -0
- data/doc/Gemfile.html +123 -0
- data/doc/README_rdoc.html +211 -0
- data/doc/Rakefile.html +136 -0
- data/doc/_index.html +101 -0
- data/doc/bin/EasyLogger.html +62 -0
- data/doc/class_list.html +36 -0
- data/doc/created.rid +11 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +53 -0
- data/doc/css/style.css +310 -0
- data/doc/features/support/env_rb.html +56 -0
- data/doc/file.README.html +60 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +60 -0
- data/doc/js/app.js +202 -0
- data/doc/js/full_list.js +149 -0
- data/doc/js/jquery.js +154 -0
- data/doc/lib/EasyLogger_version_rb.html +52 -0
- data/doc/lib/easy_logger/easy_logger_rb.html +52 -0
- data/doc/lib/easy_logger_rb.html +54 -0
- data/doc/method_list.html +43 -0
- data/doc/rdoc.css +706 -0
- data/doc/top-level-namespace.html +88 -0
- data/features/class_filtering.feature +79 -0
- data/features/class_method_filtering.feature +29 -0
- data/features/command_line.feature +25 -0
- data/features/method_filtering.feature +72 -0
- data/features/step_definitions/command_line_steps.rb +1 -0
- data/features/support/env.rb +14 -0
- data/html/EasyLogger.html +170 -0
- data/html/EasyLogger/EasyLogger.html +379 -0
- data/html/File.html +200 -0
- data/html/Logging.html +280 -0
- data/html/README_rdoc.html +212 -0
- data/html/bin/EasyLogger.html +64 -0
- data/html/created.rid +7 -0
- data/html/index.html +198 -0
- data/html/lib/EasyLogger_version_rb.html +52 -0
- data/html/lib/easy_logger/easy_logger_rb.html +54 -0
- data/html/lib/easy_logger/logging_example_rb.html +54 -0
- data/html/lib/easy_logger_rb.html +54 -0
- data/html/rdoc.css +706 -0
- data/lib/EasyLogger_version.rb +3 -0
- data/lib/easy_logger.rb +1 -0
- data/lib/easy_logger/easy_logger.rb +116 -0
- data/lib/easy_logger/logging_example.rb +46 -0
- data/spec/EasyLogger/easy_logger_spec.rb +63 -0
- data/spec/spec_helper.rb +22 -0
- metadata +132 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta name="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Top Level Namespace</title>
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
9
|
+
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
11
|
+
relpath = '';
|
12
|
+
if (relpath != '') relpath += '/';
|
13
|
+
</script>
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
21
|
+
</script>
|
22
|
+
|
23
|
+
<div id="header">
|
24
|
+
<div id="menu">
|
25
|
+
|
26
|
+
<a href="_index.html">Index</a> »
|
27
|
+
|
28
|
+
|
29
|
+
<span class="title">Top Level Namespace</span>
|
30
|
+
|
31
|
+
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="search">
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="clear"></div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<iframe id="search_frame"></iframe>
|
45
|
+
|
46
|
+
<div id="content"><h1>Top Level Namespace
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
</h1>
|
51
|
+
|
52
|
+
<dl class="box">
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
</dl>
|
62
|
+
<div class="clear"></div>
|
63
|
+
|
64
|
+
<h2>Defined Under Namespace</h2>
|
65
|
+
<p class="children">
|
66
|
+
|
67
|
+
|
68
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="EasyLogger.html" title="EasyLogger (module)">EasyLogger</a></span>
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
</p>
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
</div>
|
80
|
+
|
81
|
+
<div id="footer">
|
82
|
+
Generated on Mon Dec 13 17:33:12 2010 by
|
83
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
84
|
+
0.6.3 (ruby-1.9.2).
|
85
|
+
</div>
|
86
|
+
|
87
|
+
</body>
|
88
|
+
</html>
|
@@ -0,0 +1,79 @@
|
|
1
|
+
Feature: Class Filtering
|
2
|
+
|
3
|
+
In order to read more efficiently my log files
|
4
|
+
As an EasyLogger Viewer,
|
5
|
+
I want to be able to filter some lines according to the class
|
6
|
+
|
7
|
+
@filtering @announce
|
8
|
+
Scenario: Basic Filtering
|
9
|
+
Given I write to "testlog.log" with:
|
10
|
+
"""
|
11
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | create_links | 1
|
12
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
13
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
14
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | create_links | 4
|
15
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
16
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
17
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | create_links | 7
|
18
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
19
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | create_links | 9
|
20
|
+
"""
|
21
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger text -f -c Network testlog.log"
|
22
|
+
Then the output should contain:
|
23
|
+
"""
|
24
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | create_links | 1
|
25
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
26
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
27
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | create_links | 7
|
28
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | create_links | 9
|
29
|
+
"""
|
30
|
+
And the output should not contain "Super"
|
31
|
+
|
32
|
+
@filtering @announce
|
33
|
+
Scenario: "Complex" Filtering
|
34
|
+
Given I write to "testlog.log" with:
|
35
|
+
"""
|
36
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | create_links | 1
|
37
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
38
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
39
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | create_links | 4
|
40
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
41
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
42
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | create_links | 7
|
43
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
44
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | create_links | 9
|
45
|
+
13 Dec 11:35:51|rails[24735]| INFO | Networks | create_links | 1
|
46
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
47
|
+
13 Dec 11:35:53|rails[24735]| INFO | Networks | create_links | 3
|
48
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | create_links | 4
|
49
|
+
13 Dec 11:35:55|rails[24735]| INFO | Networks | create_links | 5
|
50
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
51
|
+
13 Dec 11:35:57|rails[24735]| INFO | Networks | create_links | 7
|
52
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
53
|
+
13 Dec 11:35:59|rails[24735]| INFO | Networks | create_links | 9
|
54
|
+
13 Dec 11:35:51|Network[24735]| INFO | Networks | create_links | 1
|
55
|
+
13 Network 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
56
|
+
13 Dec 11:35:53|rails[24735]| INFO | Networks | Network | 3
|
57
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | create_links | Network
|
58
|
+
13 Dec 11:35:54|rails[24735]| Network | Super | create_links | 10
|
59
|
+
"""
|
60
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger text -f -c Network testlog.log"
|
61
|
+
Then the output should contain:
|
62
|
+
"""
|
63
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | create_links | 1
|
64
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
65
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
66
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | create_links | 7
|
67
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | create_links | 9
|
68
|
+
"""
|
69
|
+
And the output should not contain "Super"
|
70
|
+
And the output should not contain "Networks"
|
71
|
+
And the output should not contain:
|
72
|
+
"""
|
73
|
+
13 Dec 11:35:51|Network[24735]| INFO | Networks | create_links | 1
|
74
|
+
13 Network 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
75
|
+
13 Dec 11:35:53|rails[24735]| INFO | Networks | Network | 3
|
76
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | create_links | Network
|
77
|
+
13 Dec 11:35:54|rails[24735]| Network | Super | create_links | 10
|
78
|
+
"""
|
79
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Feature: Method Filtering
|
2
|
+
|
3
|
+
In order to read more efficiently my log files
|
4
|
+
As an EasyLogger Viewer,
|
5
|
+
I want to be able to filter some lines according to the class
|
6
|
+
|
7
|
+
@filtering @announce
|
8
|
+
Scenario: Class Method Filtering
|
9
|
+
Given I write to "testlog.log" with:
|
10
|
+
"""
|
11
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
12
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
13
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
14
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_links | 4
|
15
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
16
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
17
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
18
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
19
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
20
|
+
"""
|
21
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger text -f -m add_links -c Network testlog.log"
|
22
|
+
Then the output should contain:
|
23
|
+
"""
|
24
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
25
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
26
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
27
|
+
"""
|
28
|
+
And the output should not contain "create_links"
|
29
|
+
And the output should not contain "Super"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Feature: Command Line
|
2
|
+
In order to launch the EasyLogger
|
3
|
+
As a rails developper
|
4
|
+
I want to use the command line to use EasyLogger
|
5
|
+
|
6
|
+
Scenario: gli is in the gems
|
7
|
+
When I run "rvm 1.8.7-head exec gem list"
|
8
|
+
Then the output should contain "gli"
|
9
|
+
Then the output should contain "file-tail"
|
10
|
+
|
11
|
+
Scenario: Help options
|
12
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger help"
|
13
|
+
Then the output should contain:
|
14
|
+
"""
|
15
|
+
usage: EasyLogger command
|
16
|
+
|
17
|
+
Version: 0.1
|
18
|
+
|
19
|
+
Commands:
|
20
|
+
help - Shows list of commands or help for one command
|
21
|
+
text - View the line matching model and/or methods on a log file in command
|
22
|
+
line
|
23
|
+
"""
|
24
|
+
|
25
|
+
|
@@ -0,0 +1,72 @@
|
|
1
|
+
Feature: Method Filtering
|
2
|
+
|
3
|
+
In order to read more efficiently my log files
|
4
|
+
As an EasyLogger Viewer,
|
5
|
+
I want to be able to filter some lines according to the class
|
6
|
+
|
7
|
+
@filtering @announce
|
8
|
+
Scenario: Basic Filtering
|
9
|
+
Given I write to "testlog.log" with:
|
10
|
+
"""
|
11
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
12
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
13
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
14
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_links | 4
|
15
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
16
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
17
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
18
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
19
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
20
|
+
"""
|
21
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger text -f -m add_links testlog.log"
|
22
|
+
Then the output should contain:
|
23
|
+
"""
|
24
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
25
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_links | 4
|
26
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
27
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
28
|
+
"""
|
29
|
+
And the output should not contain "create_links"
|
30
|
+
|
31
|
+
|
32
|
+
@filtering @announce
|
33
|
+
Scenario: "Complex" Filtering
|
34
|
+
Given I write to "testlog.log" with:
|
35
|
+
"""
|
36
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
37
|
+
13 Dec 11:35:52|rails[24735]| INFO | Super | create_links | 2
|
38
|
+
13 Dec 11:35:53|rails[24735]| INFO | Network | create_links | 3
|
39
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_links | 4
|
40
|
+
13 Dec 11:35:55|rails[24735]| INFO | Network | create_links | 5
|
41
|
+
13 Dec 11:35:56|rails[24735]| INFO | Super | create_links | 6
|
42
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
43
|
+
13 Dec 11:35:58|rails[24735]| INFO | Super | create_links | 8
|
44
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
45
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
46
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_linkss | 4
|
47
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_link | 7
|
48
|
+
13 add_links 11:35:59|rails[24735]| INFO | Network | add_link | 9
|
49
|
+
13 Dec 11:35:51|add_links[24735]| INFO | Network | add_links | 1
|
50
|
+
13 Dec 11:35:54|rails[24735]| add_links | Super | add_linkss | 4
|
51
|
+
13 Dec 11:35:57|rails[24735]| INFO | add_links | add_link | 7
|
52
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_link | add_links
|
53
|
+
"""
|
54
|
+
When I run "rvm 1.8.7-head exec ../../bin/EasyLogger text -f -m add_links testlog.log"
|
55
|
+
Then the output should contain:
|
56
|
+
"""
|
57
|
+
13 Dec 11:35:51|rails[24735]| INFO | Network | add_links | 1
|
58
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_links | 4
|
59
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_links | 7
|
60
|
+
13 Dec 11:35:59|rails[24735]| INFO | Network | add_links | 9
|
61
|
+
"""
|
62
|
+
And the output should not contain "create_links"
|
63
|
+
And the output should not contain:
|
64
|
+
"""
|
65
|
+
13 Dec 11:35:54|rails[24735]| INFO | Super | add_linkss | 4
|
66
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_link | 7
|
67
|
+
13 add_links 11:35:59|rails[24735]| INFO | Network | add_link | 9
|
68
|
+
13 Dec 11:35:51|add_links[24735]| INFO | Network | add_links | 1
|
69
|
+
13 Dec 11:35:54|rails[24735]| add_links | Super | add_linkss | 4
|
70
|
+
13 Dec 11:35:57|rails[24735]| INFO | add_links | add_link | 7
|
71
|
+
13 Dec 11:35:57|rails[24735]| INFO | Network | add_link | add_links
|
72
|
+
"""
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#require 'cover_me'
|
2
|
+
#require File.join(File.expand_path(File.dirname(__FILE__)), "..", "..", "coverage", "cover_me_config")
|
3
|
+
require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
|
4
|
+
require 'aruba/cucumber'
|
5
|
+
|
6
|
+
#module ArubaOverrides
|
7
|
+
# def detect_ruby_script(cmd)
|
8
|
+
# if cmd =~ /^EasyLogger /
|
9
|
+
# "rvm 1.9.2-head exec bin/#{cmd}"
|
10
|
+
# else
|
11
|
+
# super(cmd)
|
12
|
+
# end
|
13
|
+
# end
|
14
|
+
#end
|
@@ -0,0 +1,170 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
7
|
+
|
8
|
+
<title>Module: EasyLogger</title>
|
9
|
+
|
10
|
+
<link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
|
11
|
+
|
12
|
+
<script src="./js/jquery.js" type="text/javascript"
|
13
|
+
charset="utf-8"></script>
|
14
|
+
<script src="./js/thickbox-compressed.js" type="text/javascript"
|
15
|
+
charset="utf-8"></script>
|
16
|
+
<script src="./js/quicksearch.js" type="text/javascript"
|
17
|
+
charset="utf-8"></script>
|
18
|
+
<script src="./js/darkfish.js" type="text/javascript"
|
19
|
+
charset="utf-8"></script>
|
20
|
+
|
21
|
+
</head>
|
22
|
+
<body class="module">
|
23
|
+
|
24
|
+
<div id="metadata">
|
25
|
+
<div id="home-metadata">
|
26
|
+
<div id="home-section" class="section">
|
27
|
+
<h3 class="section-header">
|
28
|
+
<a href="./index.html">Home</a>
|
29
|
+
<a href="./index.html#classes">Classes</a>
|
30
|
+
<a href="./index.html#methods">Methods</a>
|
31
|
+
</h3>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="file-metadata">
|
36
|
+
<div id="file-list-section" class="section">
|
37
|
+
<h3 class="section-header">In Files</h3>
|
38
|
+
<div class="section-body">
|
39
|
+
<ul>
|
40
|
+
|
41
|
+
<li><a href="./lib/EasyLogger_version_rb.html?TB_iframe=true&height=550&width=785"
|
42
|
+
class="thickbox" title="lib/EasyLogger_version.rb">lib/EasyLogger_version.rb</a></li>
|
43
|
+
|
44
|
+
<li><a href="./lib/easy_logger/easy_logger_rb.html?TB_iframe=true&height=550&width=785"
|
45
|
+
class="thickbox" title="lib/easy_logger/easy_logger.rb">lib/easy_logger/easy_logger.rb</a></li>
|
46
|
+
|
47
|
+
</ul>
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
|
51
|
+
|
52
|
+
</div>
|
53
|
+
|
54
|
+
<div id="class-metadata">
|
55
|
+
|
56
|
+
<!-- Parent Class -->
|
57
|
+
|
58
|
+
|
59
|
+
<!-- Namespace Contents -->
|
60
|
+
|
61
|
+
<div id="namespace-list-section" class="section">
|
62
|
+
<h3 class="section-header">Namespace</h3>
|
63
|
+
<ul class="link-list">
|
64
|
+
|
65
|
+
<li><span class="type">CLASS</span> <a href="EasyLogger/EasyLogger.html">EasyLogger::EasyLogger</a></li>
|
66
|
+
|
67
|
+
</ul>
|
68
|
+
</div>
|
69
|
+
|
70
|
+
|
71
|
+
<!-- Method Quickref -->
|
72
|
+
|
73
|
+
|
74
|
+
<!-- Included Modules -->
|
75
|
+
|
76
|
+
</div>
|
77
|
+
|
78
|
+
<div id="project-metadata">
|
79
|
+
|
80
|
+
|
81
|
+
<div id="fileindex-section" class="section project-section">
|
82
|
+
<h3 class="section-header">Files</h3>
|
83
|
+
<ul>
|
84
|
+
|
85
|
+
<li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
|
86
|
+
|
87
|
+
</ul>
|
88
|
+
</div>
|
89
|
+
|
90
|
+
|
91
|
+
<div id="classindex-section" class="section project-section">
|
92
|
+
<h3 class="section-header">Class Index
|
93
|
+
<span class="search-toggle"><img src="./images/find.png"
|
94
|
+
height="16" width="16" alt="[+]"
|
95
|
+
title="show/hide quicksearch" /></span></h3>
|
96
|
+
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
97
|
+
<fieldset>
|
98
|
+
<legend>Quicksearch</legend>
|
99
|
+
<input type="text" name="quicksearch" value=""
|
100
|
+
class="quicksearch-field" />
|
101
|
+
</fieldset>
|
102
|
+
</form>
|
103
|
+
|
104
|
+
<ul class="link-list">
|
105
|
+
|
106
|
+
<li><a href="./EasyLogger.html">EasyLogger</a></li>
|
107
|
+
|
108
|
+
<li><a href="./EasyLogger/EasyLogger.html">EasyLogger::EasyLogger</a></li>
|
109
|
+
|
110
|
+
<li><a href="./File.html">File</a></li>
|
111
|
+
|
112
|
+
<li><a href="./Logging.html">Logging</a></li>
|
113
|
+
|
114
|
+
</ul>
|
115
|
+
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
116
|
+
</div>
|
117
|
+
|
118
|
+
|
119
|
+
</div>
|
120
|
+
</div>
|
121
|
+
|
122
|
+
<div id="documentation">
|
123
|
+
<h1 class="module">EasyLogger</h1>
|
124
|
+
|
125
|
+
<div id="description">
|
126
|
+
<p>
|
127
|
+
@author Sylvain Desbureaux
|
128
|
+
</p>
|
129
|
+
|
130
|
+
</div>
|
131
|
+
|
132
|
+
<!-- Constants -->
|
133
|
+
|
134
|
+
<div id="constants-list" class="section">
|
135
|
+
<h3 class="section-header">Constants</h3>
|
136
|
+
<dl>
|
137
|
+
|
138
|
+
<dt><a name="VERSION">VERSION</a></dt>
|
139
|
+
|
140
|
+
<dd class="description"></dd>
|
141
|
+
|
142
|
+
|
143
|
+
</dl>
|
144
|
+
</div>
|
145
|
+
|
146
|
+
|
147
|
+
<!-- Attributes -->
|
148
|
+
|
149
|
+
|
150
|
+
<!-- Methods -->
|
151
|
+
|
152
|
+
|
153
|
+
</div>
|
154
|
+
|
155
|
+
|
156
|
+
<div id="rdoc-debugging-section-dump" class="debugging-section">
|
157
|
+
|
158
|
+
<p>Disabled; run with --debug to generate this.</p>
|
159
|
+
|
160
|
+
</div>
|
161
|
+
|
162
|
+
<div id="validator-badges">
|
163
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
164
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
165
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
166
|
+
</div>
|
167
|
+
|
168
|
+
</body>
|
169
|
+
</html>
|
170
|
+
|