rbatch 1.6.6 → 1.7.0

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.ja.md CHANGED
@@ -39,14 +39,14 @@ RBatch::Log.new(){ |log| # Logging block
39
39
  ログファイル : ./log/20121020_005953_sample1.log
40
40
  ```
41
41
  # Logfile created on 2012-10-20 00:59:53 +0900 by logger.rb/25413
42
- I, [2012-10-20T00:59:53.895528 #3208] INFO -- : info string
43
- E, [2012-10-20T00:59:53.895582 #3208] ERROR -- : error string
44
- F, [2012-10-20T00:59:53.895629 #3208] FATAL -- : Caught exception; existing 1
45
- F, [2012-10-20T00:59:53.895667 #3208] FATAL -- : exception (RuntimeError)
46
- test.rb:6:in `block in <main>'
47
- /usr/local/lib/ruby192/lib/ruby/gems/1.9.1/gems/rbatch-1.0.0/lib/rbatch/auto_logger.rb:37:in `initialize'
48
- test.rb:3:in `new'
49
- test.rb:3:in `<main>'
42
+ [2012-10-20 00:59:53 +900] [INFO ] info string
43
+ [2012-10-20 00:59:53 +900] [ERROR] error string
44
+ [2012-10-20 00:59:53 +900] [FATAL] Caught exception; existing 1
45
+ [2012-10-20 00:59:53 +900] [FATAL] exception (RuntimeError)
46
+ [backtrace] test.rb:6:in `block in <main>'
47
+ [backtrace] /usr/local/lib/ruby192/lib/ruby/gems/1.9.1/gems/rbatch-1.0.0/lib/rbatch/auto_logger.rb:37:in `initialize'
48
+ [backtrace] test.rb:3:in `new'
49
+ [backtrace] test.rb:3:in `<main>'
50
50
  ```
51
51
 
52
52
  ### 自動設定ファイル読み込み
@@ -163,9 +163,9 @@ $ ruby bin/backup.rb
163
163
  $ cat log/YYYYMMDD_HHMMSS_backup.log
164
164
 
165
165
  # Logfile created on 2012-10-20 00:19:23 +0900 by logger.rb/25413
166
- I, [2012-10-20T00:19:23.422876 #2357] INFO -- : start backup
167
- I, [2012-10-20T00:19:23.424773 #2357] INFO -- : {:stdout=>"", :stderr=>"cp: cannot stat `/var/log/message': No such file or directory\n", :status=>1}
168
- E, [2012-10-20T00:19:23.424882 #2357] ERROR -- : backup failed
166
+ [2012-10-20 00:19:23 +0900] [INFO ] start backup
167
+ [2012-10-20 00:19:23 +0900] [INFO ] {:stdout=>"", :stderr=>"cp: cannot stat `/var/log/message': No such file or directory\n", :status=>1}
168
+ [2012-10-20 00:19:23 +0900] [ERROR] backup failed
169
169
  ```
170
170
 
171
171
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [[English]](https://github.com/fetaro/rbatch/blob/master/README.md "english") [[Japanese]](https://github.com/fetaro/rbatch/blob/master/README.ja.md "japanese")
2
2
 
3
- RBatch:Ruby-base Batch Script Framework
3
+ RBatch:Ruby-base Simple Batch Script Framework
4
4
  =============
5
5
 
6
6
  About RBatch
@@ -38,14 +38,14 @@ RBatch::Log.new(){ |log| # Logging block
38
38
  logfile : ./log/20121020_005953_sample1.log
39
39
  ```
40
40
  # Logfile created on 2012-10-20 00:59:53 +0900 by logger.rb/25413
41
- I, [2012-10-20T00:59:53.895528 #3208] INFO -- : info string
42
- E, [2012-10-20T00:59:53.895582 #3208] ERROR -- : error string
43
- F, [2012-10-20T00:59:53.895629 #3208] FATAL -- : Caught exception; existing 1
44
- F, [2012-10-20T00:59:53.895667 #3208] FATAL -- : exception (RuntimeError)
45
- test.rb:6:in `block in <main>'
46
- /usr/local/lib/ruby192/lib/ruby/gems/1.9.1/gems/rbatch-1.0.0/lib/rbatch/auto_logger.rb:37:in `initialize'
47
- test.rb:3:in `new'
48
- test.rb:3:in `<main>'
41
+ [2012-10-20 00:59:53 +900] [INFO ] info string
42
+ [2012-10-20 00:59:53 +900] [ERROR] error string
43
+ [2012-10-20 00:59:53 +900] [FATAL] Caught exception; existing 1
44
+ [2012-10-20 00:59:53 +900] [FATAL] exception (RuntimeError)
45
+ [backtrace] test.rb:6:in `block in <main>'
46
+ [backtrace] /usr/local/lib/ruby192/lib/ruby/gems/1.9.1/gems/rbatch-1.0.0/lib/rbatch/auto_logger.rb:37:in `initialize'
47
+ [backtrace] test.rb:3:in `new'
48
+ [backtrace] test.rb:3:in `<main>'
49
49
  ```
50
50
 
51
51
  ### Auto Config Reading
@@ -160,9 +160,9 @@ Log file is generated automatically.
160
160
  $ cat log/YYYYMMDD_HHMMSS_backup.log
161
161
 
162
162
  # Logfile created on 2012-10-20 00:19:23 +0900 by logger.rb/25413
163
- I, [2012-10-20T00:19:23.422876 #2357] INFO -- : start backup
164
- I, [2012-10-20T00:19:23.424773 #2357] INFO -- : {:stdout=>"", :stderr=>"cp: cannot stat `/var/log/message': No such file or directory\n", :status=>1}
165
- E, [2012-10-20T00:19:23.424882 #2357] ERROR -- : backup failed
163
+ [2012-10-20 00:19:23 +0900] [INFO ] start backup
164
+ [2012-10-20 00:19:23 +0900] [INFO ] {:stdout=>"", :stderr=>"cp: cannot stat `/var/log/message': No such file or directory\n", :status=>1}
165
+ [2012-10-20 00:19:23 +0900] [ERROR] backup failed
166
166
  ```
167
167
 
168
168
 
data/Rakefile CHANGED
@@ -7,9 +7,9 @@ require 'rake/testtask'
7
7
 
8
8
  spec = Gem::Specification.new do |s|
9
9
  s.name = 'rbatch'
10
- s.version = '1.6.6'
10
+ s.version = '1.7.0'
11
11
  s.extra_rdoc_files = ['README.md', 'LICENSE']
12
- s.summary = 'batch framework'
12
+ s.summary = 'simple batch framework'
13
13
  s.description = ''
14
14
  s.author = 'fetaro'
15
15
  s.email = 'fetaro@gmail.com'
@@ -1,182 +1,163 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
4
 
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
6
  <head>
7
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: CHANGELOG [RBatch Docs]</title>
9
+ <title>File: CHANGELOG [RBatch Docs]</title>
10
10
 
11
- <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
11
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
12
12
 
13
- <script src="./js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="./js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="./js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="./js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
13
+ <script src="./js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="./js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="./js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="./js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
21
  </head>
22
22
 
23
23
  <body class="file">
24
- <div id="metadata">
25
- <div id="home-metadata">
26
- <div id="home-section" class="section">
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
27
  <h3 class="section-header">
28
28
  <a href="./index.html">Home</a>
29
29
  <a href="./index.html#classes">Classes</a>
30
30
  <a href="./index.html#methods">Methods</a>
31
31
  </h3>
32
- </div>
33
- </div>
34
-
35
- <div id="project-metadata">
36
-
37
-
38
- <div id="fileindex-section" class="section project-section">
39
- <h3 class="section-header">Files</h3>
40
- <ul>
41
-
42
- <li class="file"><a href="./CHANGELOG.html">CHANGELOG</a></li>
43
-
44
- <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
45
-
46
- </ul>
47
- </div>
48
-
49
-
50
- <div id="classindex-section" class="section project-section">
51
- <h3 class="section-header">Class Index
52
- <span class="search-toggle"><img src="./images/find.png"
53
- height="16" width="16" alt="[+]"
54
- title="show/hide quicksearch" /></span></h3>
55
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
56
- <fieldset>
57
- <legend>Quicksearch</legend>
58
- <input type="text" name="quicksearch" value=""
59
- class="quicksearch-field" />
60
- </fieldset>
61
- </form>
62
-
63
- <ul class="link-list">
64
-
65
- <li><a href="./RBatch.html">RBatch</a></li>
66
-
67
- <li><a href="./RBatch/Cmd.html">RBatch::Cmd</a></li>
68
-
69
- <li><a href="./RBatch/CmdException.html">RBatch::CmdException</a></li>
70
-
71
- <li><a href="./RBatch/CmdResult.html">RBatch::CmdResult</a></li>
72
-
73
- <li><a href="./RBatch/Config.html">RBatch::Config</a></li>
74
-
75
- <li><a href="./RBatch/Config/Exception.html">RBatch::Config::Exception</a></li>
76
-
77
- <li><a href="./RBatch/Log.html">RBatch::Log</a></li>
78
-
79
- </ul>
80
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
81
- </div>
82
-
83
-
84
- </div>
85
- </div>
86
-
87
- <div id="documentation">
88
- <p>
89
- B0;136;0c1.0.0
90
- </p>
91
- <hr style="height: 3px"></hr><p>
92
- initial
93
- </p>
94
- <p>
95
- 1.1.0(2012/11/9)
96
- </p>
97
- <hr style="height: 3px"></hr><ul>
98
- <li><p>
99
- make common config file
100
- </p>
101
- </li>
102
- <li><p>
103
- change log option
104
- </p>
105
- </li>
106
- </ul>
107
- <p>
108
- 1.2.0(2012/11/13)
109
- </p>
110
- <hr style="height: 3px"></hr><ul>
111
- <li><p>
112
- change log level option format
113
- </p>
114
- </li>
115
- <li><p>
116
- make log append option
117
- </p>
118
- </li>
119
- </ul>
120
- <p>
121
- 1.3.0(2012/12/30)
122
- </p>
123
- <hr style="height: 3px"></hr><ul>
124
- <li><p>
125
- add <a href="RBatch/Log.html">RBatch::Log</a> to instance interface
126
- </p>
127
- </li>
128
- <li><p>
129
- add double run check option
130
- </p>
131
- </li>
132
- </ul>
133
- <p>
134
- 1.4.0(2013/1/5)
135
- </p>
136
- <hr style="height: 2px"></hr><ul>
137
- <li><p>
138
- add log_stdout option
139
- </p>
140
- </li>
141
- <li><p>
142
- add sample code
143
- </p>
144
- </li>
145
- <li><p>
146
- add cmd_raise option
147
- </p>
148
- </li>
149
- <li><p>
150
- add log_delete_old_log option
151
- </p>
152
- </li>
153
- </ul>
154
- <p>
155
- 1.5.0(2013/1/11)
156
- </p>
157
- <hr style="height: 2px"></hr><ul>
158
- <li><p>
159
- change default config dir &#8220;../config&#8221; -> &#8220;../conf&#8220;
160
- </p>
161
- </li>
162
- </ul>
163
- <p>
164
- 1.6.0(2013/1/14)
165
- </p>
166
- <hr style="height: 2px"></hr><ul>
167
- <li><p>
168
- add config key check
169
- </p>
170
- </li>
171
- </ul>
172
-
173
- </div>
174
-
175
- <div id="validator-badges">
176
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
177
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
178
- Rdoc Generator</a> 1.1.6</small>.</p>
179
- </div>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="project-metadata">
36
+
37
+
38
+ <div id="fileindex-section" class="section project-section">
39
+ <h3 class="section-header">Files</h3>
40
+ <ul>
41
+
42
+ <li class="file"><a href="./CHANGELOG.html">CHANGELOG</a></li>
43
+
44
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
45
+
46
+ </ul>
47
+ </div>
48
+
49
+
50
+ <div id="classindex-section" class="section project-section">
51
+ <h3 class="section-header">Class Index
52
+ <span class="search-toggle"><img src="./images/find.png"
53
+ height="16" width="16" alt="[+]"
54
+ title="show/hide quicksearch" /></span></h3>
55
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
56
+ <fieldset>
57
+ <legend>Quicksearch</legend>
58
+ <input type="text" name="quicksearch" value=""
59
+ class="quicksearch-field" />
60
+ </fieldset>
61
+ </form>
62
+
63
+ <ul class="link-list">
64
+
65
+ <li><a href="./RBatch.html">RBatch</a></li>
66
+
67
+ <li><a href="./RBatch/Cmd.html">RBatch::Cmd</a></li>
68
+
69
+ <li><a href="./RBatch/CmdException.html">RBatch::CmdException</a></li>
70
+
71
+ <li><a href="./RBatch/CmdResult.html">RBatch::CmdResult</a></li>
72
+
73
+ <li><a href="./RBatch/Config.html">RBatch::Config</a></li>
74
+
75
+ <li><a href="./RBatch/Log.html">RBatch::Log</a></li>
76
+
77
+ <li><a href="./RBatch/RBatch.html">RBatch::RBatch</a></li>
78
+
79
+ <li><a href="./RBatch/RBatch/RBatch.html">RBatch::RBatch::RBatch</a></li>
80
+
81
+ <li><a href="./RBatch/RBatch/RBatch/Config.html">RBatch::RBatch::RBatch::Config</a></li>
82
+
83
+ <li><a href="./RBatch/RBatch/RBatch/Config/Exception.html">RBatch::RBatch::RBatch::Config::Exception</a></li>
84
+
85
+ </ul>
86
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
87
+ </div>
88
+
89
+
90
+ </div>
91
+ </div>
92
+
93
+ <div id="documentation">
94
+ <hr style="height: 3px">
95
+
96
+ <p>initial</p>
97
+
98
+ <p>1.1.0(2012/11/9)</p>
99
+ <hr style="height: 3px">
100
+ <ul><li>
101
+ <p>make common config file</p>
102
+ </li><li>
103
+ <p>change log option</p>
104
+ </li></ul>
105
+
106
+ <p>1.2.0(2012/11/13)</p>
107
+ <hr style="height: 3px">
108
+ <ul><li>
109
+ <p>change log level option format</p>
110
+ </li><li>
111
+ <p>make log append option</p>
112
+ </li></ul>
113
+
114
+ <p>1.3.0(2012/12/30)</p>
115
+ <hr style="height: 3px">
116
+ <ul><li>
117
+ <p>add <a href="RBatch/Log.html">RBatch::Log</a> to instance interface</p>
118
+ </li><li>
119
+ <p>add double run check option</p>
120
+ </li></ul>
121
+
122
+ <p>1.4.0(2013/1/5)</p>
123
+ <hr style="height: 2px">
124
+ <ul><li>
125
+ <p>add log_stdout option</p>
126
+ </li><li>
127
+ <p>add sample code</p>
128
+ </li><li>
129
+ <p>add cmd_raise option</p>
130
+ </li><li>
131
+ <p>add log_delete_old_log option</p>
132
+ </li></ul>
133
+
134
+ <p>1.5.0(2013/1/11)</p>
135
+ <hr style="height: 2px">
136
+ <ul><li>
137
+ <p>change default config dir “../config” -&gt; “../conf”</p>
138
+ </li></ul>
139
+
140
+ <p>1.6.0(2013/1/14)</p>
141
+ <hr style="height: 2px">
142
+ <ul><li>
143
+ <p>add config key check</p>
144
+ </li></ul>
145
+
146
+ <p>1.7.0(2013/01/30)</p>
147
+ <hr style="height: 2px">
148
+ <ul><li>
149
+ <p>change log format</p>
150
+ </li><li>
151
+ <p>delete change log format option</p>
152
+ </li></ul>
153
+
154
+ </div>
155
+
156
+ <div id="validator-badges">
157
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
158
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
159
+ Rdoc Generator</a> 2</small>.</p>
160
+ </div>
180
161
  </body>
181
162
  </html>
182
163
 
@@ -1,98 +1,104 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
4
 
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
6
  <head>
7
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
8
 
9
- <title>File: LICENSE [RBatch Docs]</title>
9
+ <title>File: LICENSE [RBatch Docs]</title>
10
10
 
11
- <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
11
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
12
12
 
13
- <script src="./js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="./js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="./js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="./js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
13
+ <script src="./js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="./js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="./js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="./js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
21
  </head>
22
22
 
23
23
  <body class="file">
24
- <div id="metadata">
25
- <div id="home-metadata">
26
- <div id="home-section" class="section">
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
27
  <h3 class="section-header">
28
28
  <a href="./index.html">Home</a>
29
29
  <a href="./index.html#classes">Classes</a>
30
30
  <a href="./index.html#methods">Methods</a>
31
31
  </h3>
32
- </div>
33
- </div>
32
+ </div>
33
+ </div>
34
34
 
35
- <div id="project-metadata">
36
-
37
-
38
- <div id="fileindex-section" class="section project-section">
39
- <h3 class="section-header">Files</h3>
40
- <ul>
41
-
42
- <li class="file"><a href="./CHANGELOG.html">CHANGELOG</a></li>
43
-
44
- <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
45
-
46
- </ul>
47
- </div>
48
-
35
+ <div id="project-metadata">
36
+
37
+
38
+ <div id="fileindex-section" class="section project-section">
39
+ <h3 class="section-header">Files</h3>
40
+ <ul>
41
+
42
+ <li class="file"><a href="./CHANGELOG.html">CHANGELOG</a></li>
43
+
44
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
45
+
46
+ </ul>
47
+ </div>
48
+
49
49
 
50
- <div id="classindex-section" class="section project-section">
51
- <h3 class="section-header">Class Index
52
- <span class="search-toggle"><img src="./images/find.png"
53
- height="16" width="16" alt="[+]"
54
- title="show/hide quicksearch" /></span></h3>
55
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
56
- <fieldset>
57
- <legend>Quicksearch</legend>
58
- <input type="text" name="quicksearch" value=""
59
- class="quicksearch-field" />
60
- </fieldset>
61
- </form>
50
+ <div id="classindex-section" class="section project-section">
51
+ <h3 class="section-header">Class Index
52
+ <span class="search-toggle"><img src="./images/find.png"
53
+ height="16" width="16" alt="[+]"
54
+ title="show/hide quicksearch" /></span></h3>
55
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
56
+ <fieldset>
57
+ <legend>Quicksearch</legend>
58
+ <input type="text" name="quicksearch" value=""
59
+ class="quicksearch-field" />
60
+ </fieldset>
61
+ </form>
62
62
 
63
- <ul class="link-list">
64
-
65
- <li><a href="./RBatch.html">RBatch</a></li>
66
-
67
- <li><a href="./RBatch/Cmd.html">RBatch::Cmd</a></li>
68
-
69
- <li><a href="./RBatch/CmdException.html">RBatch::CmdException</a></li>
70
-
71
- <li><a href="./RBatch/CmdResult.html">RBatch::CmdResult</a></li>
72
-
73
- <li><a href="./RBatch/Config.html">RBatch::Config</a></li>
74
-
75
- <li><a href="./RBatch/Config/Exception.html">RBatch::Config::Exception</a></li>
76
-
77
- <li><a href="./RBatch/Log.html">RBatch::Log</a></li>
78
-
79
- </ul>
80
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
81
- </div>
63
+ <ul class="link-list">
64
+
65
+ <li><a href="./RBatch.html">RBatch</a></li>
66
+
67
+ <li><a href="./RBatch/Cmd.html">RBatch::Cmd</a></li>
68
+
69
+ <li><a href="./RBatch/CmdException.html">RBatch::CmdException</a></li>
70
+
71
+ <li><a href="./RBatch/CmdResult.html">RBatch::CmdResult</a></li>
72
+
73
+ <li><a href="./RBatch/Config.html">RBatch::Config</a></li>
74
+
75
+ <li><a href="./RBatch/Log.html">RBatch::Log</a></li>
76
+
77
+ <li><a href="./RBatch/RBatch.html">RBatch::RBatch</a></li>
78
+
79
+ <li><a href="./RBatch/RBatch/RBatch.html">RBatch::RBatch::RBatch</a></li>
80
+
81
+ <li><a href="./RBatch/RBatch/RBatch/Config.html">RBatch::RBatch::RBatch::Config</a></li>
82
+
83
+ <li><a href="./RBatch/RBatch/RBatch/Config/Exception.html">RBatch::RBatch::RBatch::Config::Exception</a></li>
84
+
85
+ </ul>
86
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
87
+ </div>
82
88
 
83
-
84
- </div>
85
- </div>
89
+
90
+ </div>
91
+ </div>
86
92
 
87
- <div id="documentation">
88
-
89
- </div>
93
+ <div id="documentation">
94
+
95
+ </div>
90
96
 
91
- <div id="validator-badges">
92
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
93
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
94
- Rdoc Generator</a> 1.1.6</small>.</p>
95
- </div>
97
+ <div id="validator-badges">
98
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
99
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
100
+ Rdoc Generator</a> 2</small>.</p>
101
+ </div>
96
102
  </body>
97
103
  </html>
98
104