ranch-manager 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +35 -0
  4. data/README.rdoc +6 -0
  5. data/Rakefile +15 -0
  6. data/bin/ranch-manager +89 -0
  7. data/html/README_rdoc.html +101 -0
  8. data/html/RanchManager/Hostname.html +224 -0
  9. data/html/RanchManager/IpManager.html +271 -0
  10. data/html/RanchManager/Logger.html +189 -0
  11. data/html/RanchManager/Setup.html +155 -0
  12. data/html/RanchManager.html +120 -0
  13. data/html/RancherManagerCLI/RanchManager.html +96 -0
  14. data/html/RancherManagerCLI.html +107 -0
  15. data/html/created.rid +10 -0
  16. data/html/css/fonts.css +167 -0
  17. data/html/css/rdoc.css +590 -0
  18. data/html/fonts/Lato-Light.ttf +0 -0
  19. data/html/fonts/Lato-LightItalic.ttf +0 -0
  20. data/html/fonts/Lato-Regular.ttf +0 -0
  21. data/html/fonts/Lato-RegularItalic.ttf +0 -0
  22. data/html/fonts/SourceCodePro-Bold.ttf +0 -0
  23. data/html/fonts/SourceCodePro-Regular.ttf +0 -0
  24. data/html/images/add.png +0 -0
  25. data/html/images/arrow_up.png +0 -0
  26. data/html/images/brick.png +0 -0
  27. data/html/images/brick_link.png +0 -0
  28. data/html/images/bug.png +0 -0
  29. data/html/images/bullet_black.png +0 -0
  30. data/html/images/bullet_toggle_minus.png +0 -0
  31. data/html/images/bullet_toggle_plus.png +0 -0
  32. data/html/images/date.png +0 -0
  33. data/html/images/delete.png +0 -0
  34. data/html/images/find.png +0 -0
  35. data/html/images/loadingAnimation.gif +0 -0
  36. data/html/images/macFFBgHack.png +0 -0
  37. data/html/images/package.png +0 -0
  38. data/html/images/page_green.png +0 -0
  39. data/html/images/page_white_text.png +0 -0
  40. data/html/images/page_white_width.png +0 -0
  41. data/html/images/plugin.png +0 -0
  42. data/html/images/ruby.png +0 -0
  43. data/html/images/tag_blue.png +0 -0
  44. data/html/images/tag_green.png +0 -0
  45. data/html/images/transparent.png +0 -0
  46. data/html/images/wrench.png +0 -0
  47. data/html/images/wrench_orange.png +0 -0
  48. data/html/images/zoom.png +0 -0
  49. data/html/index.html +114 -0
  50. data/html/js/darkfish.js +161 -0
  51. data/html/js/jquery.js +4 -0
  52. data/html/js/navigation.js +142 -0
  53. data/html/js/navigation.js.gz +0 -0
  54. data/html/js/search.js +109 -0
  55. data/html/js/search_index.js +1 -0
  56. data/html/js/search_index.js.gz +0 -0
  57. data/html/js/searcher.js +229 -0
  58. data/html/js/searcher.js.gz +0 -0
  59. data/html/table_of_contents.html +120 -0
  60. data/lib/ranch-manager/constants.rb +4 -0
  61. data/lib/ranch-manager/hostname.rb +13 -0
  62. data/lib/ranch-manager/ip_manager.rb +41 -0
  63. data/lib/ranch-manager/logger.rb +11 -0
  64. data/lib/ranch-manager/setup.rb +32 -0
  65. data/lib/ranch-manager/version.rb +3 -0
  66. data/lib/ranch-manager.rb +16 -0
  67. data/ranch-manager.gemspec +31 -0
  68. data/ranch-manager.rdoc +0 -0
  69. metadata +189 -0
@@ -0,0 +1,271 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class RanchManager::IpManager - Rancher Manager</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ var index_rel_prefix = "../";
12
+ </script>
13
+
14
+ <script src="../js/jquery.js"></script>
15
+ <script src="../js/darkfish.js"></script>
16
+
17
+ <link href="../css/fonts.css" rel="stylesheet">
18
+ <link href="../css/rdoc.css" rel="stylesheet">
19
+
20
+
21
+
22
+ <body id="top" role="document" class="class">
23
+ <nav role="navigation">
24
+ <div id="project-navigation">
25
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
26
+ <h2>
27
+ <a href="../index.html" rel="home">Home</a>
28
+ </h2>
29
+
30
+ <div id="table-of-contents-navigation">
31
+ <a href="../table_of_contents.html#pages">Pages</a>
32
+ <a href="../table_of_contents.html#classes">Classes</a>
33
+ <a href="../table_of_contents.html#methods">Methods</a>
34
+ </div>
35
+ </div>
36
+
37
+ <div id="search-section" role="search" class="project-section initially-hidden">
38
+ <form action="#" method="get" accept-charset="utf-8">
39
+ <div id="search-field-wrapper">
40
+ <input id="search-field" role="combobox" aria-label="Search"
41
+ aria-autocomplete="list" aria-controls="search-results"
42
+ type="text" name="search" placeholder="Search" spellcheck="false"
43
+ title="Type to search, Up and Down to navigate, Enter to load">
44
+ </div>
45
+
46
+ <ul id="search-results" aria-label="Search Results"
47
+ aria-busy="false" aria-expanded="false"
48
+ aria-atomic="false" class="initially-hidden"></ul>
49
+ </form>
50
+ </div>
51
+
52
+ </div>
53
+
54
+
55
+
56
+ <div id="class-metadata">
57
+
58
+ <div id="parent-class-section" class="nav-section">
59
+ <h3>Parent</h3>
60
+
61
+
62
+ <p class="link">Object
63
+
64
+ </div>
65
+
66
+
67
+
68
+ <!-- Method Quickref -->
69
+ <div id="method-list-section" class="nav-section">
70
+ <h3>Methods</h3>
71
+
72
+ <ul class="link-list" role="directory">
73
+
74
+ <li ><a href="#method-c-add">::add</a>
75
+
76
+ <li ><a href="#method-c-remove">::remove</a>
77
+
78
+ <li ><a href="#method-c-update">::update</a>
79
+
80
+ <li ><a href="#method-c-update_all">::update_all</a>
81
+
82
+ </ul>
83
+ </div>
84
+
85
+ </div>
86
+ </nav>
87
+
88
+ <main role="main" aria-labelledby="class-RanchManager::IpManager">
89
+ <h1 id="class-RanchManager::IpManager" class="class">
90
+ class RanchManager::IpManager
91
+ </h1>
92
+
93
+ <section class="description">
94
+
95
+ </section>
96
+
97
+
98
+
99
+
100
+ <section id="5Buntitled-5D" class="documentation-section">
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section">
111
+ <header>
112
+ <h3>Public Class Methods</h3>
113
+ </header>
114
+
115
+
116
+ <div id="method-c-add" class="method-detail ">
117
+
118
+ <div class="method-heading">
119
+ <span class="method-name">add</span><span
120
+ class="method-args">(host, ip=current_ip_address.strip)</span>
121
+
122
+ <span class="method-click-advice">click to toggle source</span>
123
+
124
+ </div>
125
+
126
+
127
+ <div class="method-description">
128
+
129
+
130
+
131
+
132
+
133
+
134
+ <div class="method-source-code" id="add-source">
135
+ <pre><span class="ruby-comment"># File lib/ranch-manager/ip_manager.rb, line 13</span>
136
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>=<span class="ruby-identifier">current_ip_address</span>.<span class="ruby-identifier">strip</span>)
137
+ <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">info</span> <span class="ruby-node">&quot;Adding #{host} to rancher-manager with ip #{ip}&quot;</span>
138
+
139
+ <span class="ruby-identifier">host</span> = <span class="ruby-constant">Hostname</span>.<span class="ruby-identifier">new</span>(<span class="ruby-operator">*</span>[<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>].<span class="ruby-identifier">compact</span>)
140
+ <span class="ruby-constant">Ghost</span>.<span class="ruby-identifier">store</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">host</span>)
141
+ <span class="ruby-keyword">end</span></pre>
142
+ </div>
143
+
144
+ </div>
145
+
146
+
147
+
148
+
149
+ </div>
150
+
151
+
152
+ <div id="method-c-remove" class="method-detail ">
153
+
154
+ <div class="method-heading">
155
+ <span class="method-name">remove</span><span
156
+ class="method-args">(host)</span>
157
+
158
+ <span class="method-click-advice">click to toggle source</span>
159
+
160
+ </div>
161
+
162
+
163
+ <div class="method-description">
164
+
165
+
166
+
167
+
168
+
169
+
170
+ <div class="method-source-code" id="remove-source">
171
+ <pre><span class="ruby-comment"># File lib/ranch-manager/ip_manager.rb, line 20</span>
172
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">remove</span>(<span class="ruby-identifier">host</span>)
173
+ <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">info</span> <span class="ruby-node">&quot;Removing #{host} from rancher-manager&quot;</span>
174
+ <span class="ruby-constant">Ghost</span>.<span class="ruby-identifier">store</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-identifier">host</span>)
175
+ <span class="ruby-keyword">end</span></pre>
176
+ </div>
177
+
178
+ </div>
179
+
180
+
181
+
182
+
183
+ </div>
184
+
185
+
186
+ <div id="method-c-update" class="method-detail ">
187
+
188
+ <div class="method-heading">
189
+ <span class="method-name">update</span><span
190
+ class="method-args">(host, ip=current_ip_address.strip)</span>
191
+
192
+ <span class="method-click-advice">click to toggle source</span>
193
+
194
+ </div>
195
+
196
+
197
+ <div class="method-description">
198
+
199
+
200
+
201
+
202
+
203
+
204
+ <div class="method-source-code" id="update-source">
205
+ <pre><span class="ruby-comment"># File lib/ranch-manager/ip_manager.rb, line 25</span>
206
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">update</span>(<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>=<span class="ruby-identifier">current_ip_address</span>.<span class="ruby-identifier">strip</span>)
207
+ <span class="ruby-constant">Logger</span>.<span class="ruby-identifier">info</span> <span class="ruby-node">&quot;Updating ip address for #{host}&quot;</span>
208
+ <span class="ruby-identifier">remove</span>(<span class="ruby-identifier">host</span>)
209
+ <span class="ruby-identifier">add</span>(<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>)
210
+ <span class="ruby-keyword">end</span></pre>
211
+ </div>
212
+
213
+ </div>
214
+
215
+
216
+
217
+
218
+ </div>
219
+
220
+
221
+ <div id="method-c-update_all" class="method-detail ">
222
+
223
+ <div class="method-heading">
224
+ <span class="method-name">update_all</span><span
225
+ class="method-args">(ip=current_ip_address.strip)</span>
226
+
227
+ <span class="method-click-advice">click to toggle source</span>
228
+
229
+ </div>
230
+
231
+
232
+ <div class="method-description">
233
+
234
+
235
+
236
+
237
+
238
+
239
+ <div class="method-source-code" id="update_all-source">
240
+ <pre><span class="ruby-comment"># File lib/ranch-manager/ip_manager.rb, line 3</span>
241
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">update_all</span>(<span class="ruby-identifier">ip</span>=<span class="ruby-identifier">current_ip_address</span>.<span class="ruby-identifier">strip</span>)
242
+ <span class="ruby-identifier">hostnames</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">host</span><span class="ruby-operator">|</span>
243
+ <span class="ruby-keyword">if</span> <span class="ruby-node">%x`ghost list | grep &#39;#{host}&#39;`</span>
244
+ <span class="ruby-identifier">update</span>(<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>)
245
+ <span class="ruby-keyword">else</span>
246
+ <span class="ruby-identifier">add</span>(<span class="ruby-identifier">host</span>, <span class="ruby-identifier">ip</span>)
247
+ <span class="ruby-keyword">end</span>
248
+ <span class="ruby-keyword">end</span>
249
+ <span class="ruby-keyword">end</span></pre>
250
+ </div>
251
+
252
+ </div>
253
+
254
+
255
+
256
+
257
+ </div>
258
+
259
+
260
+ </section>
261
+
262
+ </section>
263
+ </main>
264
+
265
+
266
+ <footer id="validator-badges" role="contentinfo">
267
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
268
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
269
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
270
+ </footer>
271
+
@@ -0,0 +1,189 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class RanchManager::Logger - Rancher Manager</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ var index_rel_prefix = "../";
12
+ </script>
13
+
14
+ <script src="../js/jquery.js"></script>
15
+ <script src="../js/darkfish.js"></script>
16
+
17
+ <link href="../css/fonts.css" rel="stylesheet">
18
+ <link href="../css/rdoc.css" rel="stylesheet">
19
+
20
+
21
+
22
+ <body id="top" role="document" class="class">
23
+ <nav role="navigation">
24
+ <div id="project-navigation">
25
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
26
+ <h2>
27
+ <a href="../index.html" rel="home">Home</a>
28
+ </h2>
29
+
30
+ <div id="table-of-contents-navigation">
31
+ <a href="../table_of_contents.html#pages">Pages</a>
32
+ <a href="../table_of_contents.html#classes">Classes</a>
33
+ <a href="../table_of_contents.html#methods">Methods</a>
34
+ </div>
35
+ </div>
36
+
37
+ <div id="search-section" role="search" class="project-section initially-hidden">
38
+ <form action="#" method="get" accept-charset="utf-8">
39
+ <div id="search-field-wrapper">
40
+ <input id="search-field" role="combobox" aria-label="Search"
41
+ aria-autocomplete="list" aria-controls="search-results"
42
+ type="text" name="search" placeholder="Search" spellcheck="false"
43
+ title="Type to search, Up and Down to navigate, Enter to load">
44
+ </div>
45
+
46
+ <ul id="search-results" aria-label="Search Results"
47
+ aria-busy="false" aria-expanded="false"
48
+ aria-atomic="false" class="initially-hidden"></ul>
49
+ </form>
50
+ </div>
51
+
52
+ </div>
53
+
54
+
55
+
56
+ <div id="class-metadata">
57
+
58
+ <div id="parent-class-section" class="nav-section">
59
+ <h3>Parent</h3>
60
+
61
+
62
+ <p class="link">Object
63
+
64
+ </div>
65
+
66
+
67
+
68
+ <!-- Method Quickref -->
69
+ <div id="method-list-section" class="nav-section">
70
+ <h3>Methods</h3>
71
+
72
+ <ul class="link-list" role="directory">
73
+
74
+ <li ><a href="#method-c-info">::info</a>
75
+
76
+ <li ><a href="#method-c-logger">::logger</a>
77
+
78
+ </ul>
79
+ </div>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <main role="main" aria-labelledby="class-RanchManager::Logger">
85
+ <h1 id="class-RanchManager::Logger" class="class">
86
+ class RanchManager::Logger
87
+ </h1>
88
+
89
+ <section class="description">
90
+
91
+ </section>
92
+
93
+
94
+
95
+
96
+ <section id="5Buntitled-5D" class="documentation-section">
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section">
107
+ <header>
108
+ <h3>Public Class Methods</h3>
109
+ </header>
110
+
111
+
112
+ <div id="method-c-info" class="method-detail ">
113
+
114
+ <div class="method-heading">
115
+ <span class="method-name">info</span><span
116
+ class="method-args">(msg)</span>
117
+
118
+ <span class="method-click-advice">click to toggle source</span>
119
+
120
+ </div>
121
+
122
+
123
+ <div class="method-description">
124
+
125
+
126
+
127
+
128
+
129
+
130
+ <div class="method-source-code" id="info-source">
131
+ <pre><span class="ruby-comment"># File lib/ranch-manager/logger.rb, line 3</span>
132
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">info</span>(<span class="ruby-identifier">msg</span>)
133
+ <span class="ruby-identifier">logger</span>.<span class="ruby-identifier">info</span>(<span class="ruby-identifier">msg</span>)
134
+ <span class="ruby-keyword">end</span></pre>
135
+ </div>
136
+
137
+ </div>
138
+
139
+
140
+
141
+
142
+ </div>
143
+
144
+
145
+ <div id="method-c-logger" class="method-detail ">
146
+
147
+ <div class="method-heading">
148
+ <span class="method-name">logger</span><span
149
+ class="method-args">()</span>
150
+
151
+ <span class="method-click-advice">click to toggle source</span>
152
+
153
+ </div>
154
+
155
+
156
+ <div class="method-description">
157
+
158
+
159
+
160
+
161
+
162
+
163
+ <div class="method-source-code" id="logger-source">
164
+ <pre><span class="ruby-comment"># File lib/ranch-manager/logger.rb, line 7</span>
165
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">logger</span>
166
+ <span class="ruby-identifier">@@logger</span> <span class="ruby-operator">||=</span> <span class="ruby-operator">::</span><span class="ruby-constant">Logger</span>.<span class="ruby-identifier">new</span>(<span class="ruby-constant">STDOUT</span>)
167
+ <span class="ruby-keyword">end</span></pre>
168
+ </div>
169
+
170
+ </div>
171
+
172
+
173
+
174
+
175
+ </div>
176
+
177
+
178
+ </section>
179
+
180
+ </section>
181
+ </main>
182
+
183
+
184
+ <footer id="validator-badges" role="contentinfo">
185
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
186
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
187
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
188
+ </footer>
189
+
@@ -0,0 +1,155 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class RanchManager::Setup - Rancher Manager</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ var index_rel_prefix = "../";
12
+ </script>
13
+
14
+ <script src="../js/jquery.js"></script>
15
+ <script src="../js/darkfish.js"></script>
16
+
17
+ <link href="../css/fonts.css" rel="stylesheet">
18
+ <link href="../css/rdoc.css" rel="stylesheet">
19
+
20
+
21
+
22
+ <body id="top" role="document" class="class">
23
+ <nav role="navigation">
24
+ <div id="project-navigation">
25
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
26
+ <h2>
27
+ <a href="../index.html" rel="home">Home</a>
28
+ </h2>
29
+
30
+ <div id="table-of-contents-navigation">
31
+ <a href="../table_of_contents.html#pages">Pages</a>
32
+ <a href="../table_of_contents.html#classes">Classes</a>
33
+ <a href="../table_of_contents.html#methods">Methods</a>
34
+ </div>
35
+ </div>
36
+
37
+ <div id="search-section" role="search" class="project-section initially-hidden">
38
+ <form action="#" method="get" accept-charset="utf-8">
39
+ <div id="search-field-wrapper">
40
+ <input id="search-field" role="combobox" aria-label="Search"
41
+ aria-autocomplete="list" aria-controls="search-results"
42
+ type="text" name="search" placeholder="Search" spellcheck="false"
43
+ title="Type to search, Up and Down to navigate, Enter to load">
44
+ </div>
45
+
46
+ <ul id="search-results" aria-label="Search Results"
47
+ aria-busy="false" aria-expanded="false"
48
+ aria-atomic="false" class="initially-hidden"></ul>
49
+ </form>
50
+ </div>
51
+
52
+ </div>
53
+
54
+
55
+
56
+ <div id="class-metadata">
57
+
58
+ <div id="parent-class-section" class="nav-section">
59
+ <h3>Parent</h3>
60
+
61
+
62
+ <p class="link">Object
63
+
64
+ </div>
65
+
66
+
67
+
68
+ <!-- Method Quickref -->
69
+ <div id="method-list-section" class="nav-section">
70
+ <h3>Methods</h3>
71
+
72
+ <ul class="link-list" role="directory">
73
+
74
+ <li ><a href="#method-c-setup">::setup</a>
75
+
76
+ </ul>
77
+ </div>
78
+
79
+ </div>
80
+ </nav>
81
+
82
+ <main role="main" aria-labelledby="class-RanchManager::Setup">
83
+ <h1 id="class-RanchManager::Setup" class="class">
84
+ class RanchManager::Setup
85
+ </h1>
86
+
87
+ <section class="description">
88
+
89
+ </section>
90
+
91
+
92
+
93
+
94
+ <section id="5Buntitled-5D" class="documentation-section">
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section">
105
+ <header>
106
+ <h3>Public Class Methods</h3>
107
+ </header>
108
+
109
+
110
+ <div id="method-c-setup" class="method-detail ">
111
+
112
+ <div class="method-heading">
113
+ <span class="method-name">setup</span><span
114
+ class="method-args">()</span>
115
+
116
+ <span class="method-click-advice">click to toggle source</span>
117
+
118
+ </div>
119
+
120
+
121
+ <div class="method-description">
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <div class="method-source-code" id="setup-source">
129
+ <pre><span class="ruby-comment"># File lib/ranch-manager/setup.rb, line 3</span>
130
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">setup</span>
131
+ <span class="ruby-identifier">create_manager_directory</span>
132
+ <span class="ruby-identifier">create_hostnames_file</span>
133
+ <span class="ruby-keyword">end</span></pre>
134
+ </div>
135
+
136
+ </div>
137
+
138
+
139
+
140
+
141
+ </div>
142
+
143
+
144
+ </section>
145
+
146
+ </section>
147
+ </main>
148
+
149
+
150
+ <footer id="validator-badges" role="contentinfo">
151
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
152
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
153
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
154
+ </footer>
155
+