structured_warnings 0.1.4 → 0.2.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.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +21 -0
  4. data/History.txt +7 -0
  5. data/README.rdoc +5 -5
  6. data/doc/DeprecatedMethodWarning.html +76 -141
  7. data/doc/DeprecatedSignatureWarning.html +76 -141
  8. data/doc/DeprecationWarning.html +76 -141
  9. data/doc/Dynamic.html +89 -136
  10. data/doc/Object.html +92 -161
  11. data/doc/README_rdoc.html +144 -157
  12. data/doc/StandardWarning.html +76 -141
  13. data/doc/StructuredWarnings.html +95 -157
  14. data/doc/StructuredWarnings/ClassMethods.html +131 -193
  15. data/doc/StructuredWarnings/Kernel.html +146 -198
  16. data/doc/StructuredWarnings/Test.html +71 -150
  17. data/doc/StructuredWarnings/Test/Assertions.html +194 -244
  18. data/doc/StructuredWarnings/Test/Warner.html +138 -201
  19. data/doc/StructuredWarnings/Warner.html +113 -177
  20. data/doc/Test.html +95 -0
  21. data/doc/Test/Unit.html +95 -0
  22. data/doc/Warning.html +276 -338
  23. data/doc/Warning/ClassMethods.html +182 -238
  24. data/doc/created.rid +10 -10
  25. data/doc/css/fonts.css +167 -0
  26. data/doc/css/rdoc.css +590 -0
  27. data/doc/fonts/Lato-Light.ttf +0 -0
  28. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  29. data/doc/fonts/Lato-Regular.ttf +0 -0
  30. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  31. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  32. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  33. data/doc/images/add.png +0 -0
  34. data/doc/images/arrow_up.png +0 -0
  35. data/doc/images/delete.png +0 -0
  36. data/doc/images/tag_blue.png +0 -0
  37. data/doc/images/transparent.png +0 -0
  38. data/doc/index.html +104 -103
  39. data/doc/js/darkfish.js +112 -67
  40. data/doc/js/jquery.js +4 -32
  41. data/doc/js/navigation.js +142 -0
  42. data/doc/js/navigation.js.gz +0 -0
  43. data/doc/js/search.js +109 -0
  44. data/doc/js/search_index.js +1 -0
  45. data/doc/js/search_index.js.gz +0 -0
  46. data/doc/js/searcher.js +228 -0
  47. data/doc/js/searcher.js.gz +0 -0
  48. data/doc/table_of_contents.html +200 -0
  49. data/lib/structured_warnings/dynamic.rb +12 -6
  50. data/lib/structured_warnings/kernel.rb +4 -4
  51. data/structured_warnings.gemspec +5 -1
  52. data/test/structured_warnings_test.rb +63 -9
  53. metadata +84 -43
  54. data/doc/js/quicksearch.js +0 -114
  55. data/doc/js/thickbox-compressed.js +0 -10
  56. data/doc/lib/structured_warnings/dynamic_rb.html +0 -65
  57. data/doc/lib/structured_warnings/kernel_rb.html +0 -52
  58. data/doc/lib/structured_warnings/test/assertions_rb.html +0 -52
  59. data/doc/lib/structured_warnings/test/warner_rb.html +0 -52
  60. data/doc/lib/structured_warnings/test_rb.html +0 -56
  61. data/doc/lib/structured_warnings/warner_rb.html +0 -52
  62. data/doc/lib/structured_warnings/warning_rb.html +0 -64
  63. data/doc/lib/structured_warnings_rb.html +0 -62
  64. data/doc/rdoc.css +0 -763
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2b48e72d14f6d01966512679d69e6fbc7f012b15
4
+ data.tar.gz: 71d1ba1bf37e469cee648f774dc8a8e805e557d8
5
+ SHA512:
6
+ metadata.gz: b66bd37bd801f9de3541d9a2793ffa8da342a8f2cf253a6295a6da55ae3230dab6f2cfba46994c27351c8050d8e3ed7998cb4dd2936b830a823023c2e1a77ed1
7
+ data.tar.gz: e6db07f6d4e5393cc009d62300c62a8ff32d500d00ebf44b4dec97e8a5c6cc92226db98048f6db8a241673b398b186daf36f5b893e9b0fd8740ba4b4cee24534
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,21 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ structured_warnings (0.2.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ power_assert (0.2.2)
10
+ rake (10.4.2)
11
+ test-unit (3.0.9)
12
+ power_assert
13
+
14
+ PLATFORMS
15
+ java
16
+ ruby
17
+
18
+ DEPENDENCIES
19
+ rake
20
+ structured_warnings!
21
+ test-unit
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ == 0.2.0 2015-01-15
2
+
3
+ * Merging pull requests #4, and #5
4
+ * Fixes to dynamic.rb to support forking from non-main thread
5
+ * Improve compatibility with other libs overriding Kernel#warn
6
+ * Testing on latest Ruby VMs (Ruby 2 variants, JRuby and Rubinius)
7
+
1
8
  == 0.1.4 2013-01-23
2
9
  * Reorganized Rakefile and tasks, removed Jeweler dependency.
3
10
  * Updated tests, fixed circular dependency error.
data/README.rdoc CHANGED
@@ -17,9 +17,9 @@ http://www.oreillynet.com/ruby/blog/2008/02/structured_warnings_now.html
17
17
 
18
18
  structured_warnings works with all interpreters, it was tested with.
19
19
 
20
- * Ruby 1.8.5 and later
21
- * Ruby 1.9.1 and later
22
- * JRuby 1.x
20
+ * Ruby 1.8-2.2
21
+ * Rubinius 2.4
22
+ * JRuby 1.7
23
23
 
24
24
  Please let me know, of any other compatibilities or file a bug for any
25
25
  incompatibilities.
@@ -109,9 +109,9 @@ feedback to your users as possible.
109
109
 
110
110
  * {Inspiring article}[http://www.oreillynet.com/ruby/blog/2008/02/structured_warnings_now.html]
111
111
  * {Implementation Highlights}[http://www.nach-vorne.de/2008/2/22/structured_warnings-highlights]
112
- * {Project's website}[http://github.com/schmidt/structured_warnings/]
112
+ * {Project's website}[https://github.com/schmidt/structured_warnings/]
113
113
  * {API doc}[http://rdoc.info/projects/schmidt/structured_warnings]
114
- * {Build Status on RunCodeRun}[http://runcoderun.com/schmidt/structured_warnings]
114
+ * {Build status}[https://travis-ci.org/schmidt/structured_warnings]
115
115
 
116
116
 
117
117
  == How to submit patches
@@ -1,170 +1,105 @@
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">
1
+ <!DOCTYPE html>
2
+
3
+ <html>
5
4
  <head>
6
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
5
+ <meta charset="UTF-8">
7
6
 
8
- <title>Class: DeprecatedMethodWarning</title>
7
+ <title>class DeprecatedMethodWarning - structured_warnings</title>
9
8
 
10
- <link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
11
12
 
12
- <script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
- <script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
- <script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
- <script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
16
15
 
17
- </head>
18
- <body id="top" class="class">
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
19
18
 
20
- <div id="metadata">
21
- <div id="home-metadata">
22
- <div id="home-section" class="section">
23
- <h3 class="section-header">
24
- <a href="./index.html">Home</a>
25
- <a href="./index.html#classes">Classes</a>
26
- <a href="./index.html#methods">Methods</a>
27
- </h3>
28
- </div>
29
- </div>
30
19
 
31
- <div id="file-metadata">
32
- <div id="file-list-section" class="section">
33
- <h3 class="section-header">In Files</h3>
34
- <div class="section-body">
35
- <ul>
36
-
37
- <li><a href="./lib/structured_warnings/warning_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
- class="thickbox" title="lib/structured_warnings/warning.rb">lib/structured_warnings/warning.rb</a></li>
39
-
40
- </ul>
41
- </div>
42
- </div>
43
-
44
-
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
45
43
  </div>
46
44
 
47
- <div id="class-metadata">
48
-
49
- <!-- Parent Class -->
50
- <div id="parent-class-section" class="section">
51
- <h3 class="section-header">Parent</h3>
52
-
53
- <p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a></p>
54
-
55
- </div>
56
-
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
57
50
 
58
-
51
+ </div>
59
52
 
60
-
53
+
61
54
 
62
-
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
63
59
 
64
-
65
- </div>
60
+
61
+ <p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a>
62
+
63
+ </div>
66
64
 
67
- <div id="project-metadata">
68
-
69
-
70
- <div id="fileindex-section" class="section project-section">
71
- <h3 class="section-header">Files</h3>
72
- <ul>
73
-
74
- <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
75
-
76
- </ul>
77
- </div>
78
-
79
-
80
- <div id="classindex-section" class="section project-section">
81
- <h3 class="section-header">Class/Module Index
82
- <span class="search-toggle"><img src="./images/find.png"
83
- height="16" width="16" alt="[+]"
84
- title="show/hide quicksearch" /></span></h3>
85
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
86
- <fieldset>
87
- <legend>Quicksearch</legend>
88
- <input type="text" name="quicksearch" value=""
89
- class="quicksearch-field" />
90
- </fieldset>
91
- </form>
92
-
93
- <ul class="link-list">
94
-
95
- <li><a href="./StructuredWarnings.html">StructuredWarnings</a></li>
96
-
97
- <li><a href="./StructuredWarnings/ClassMethods.html">StructuredWarnings::ClassMethods</a></li>
98
-
99
- <li><a href="./StructuredWarnings/Kernel.html">StructuredWarnings::Kernel</a></li>
100
-
101
- <li><a href="./StructuredWarnings/Test.html">StructuredWarnings::Test</a></li>
102
-
103
- <li><a href="./StructuredWarnings/Test/Assertions.html">StructuredWarnings::Test::Assertions</a></li>
104
-
105
- <li><a href="./StructuredWarnings/Test/Warner.html">StructuredWarnings::Test::Warner</a></li>
106
-
107
- <li><a href="./StructuredWarnings/Warner.html">StructuredWarnings::Warner</a></li>
108
-
109
- <li><a href="./Warning.html">Warning</a></li>
110
-
111
- <li><a href="./Warning/ClassMethods.html">Warning::ClassMethods</a></li>
112
-
113
- <li><a href="./DeprecatedMethodWarning.html">DeprecatedMethodWarning</a></li>
114
-
115
- <li><a href="./DeprecatedSignatureWarning.html">DeprecatedSignatureWarning</a></li>
116
-
117
- <li><a href="./DeprecationWarning.html">DeprecationWarning</a></li>
118
-
119
- <li><a href="./Dynamic.html">Dynamic</a></li>
120
-
121
- <li><a href="./Object.html">Object</a></li>
122
-
123
- <li><a href="./StandardWarning.html">StandardWarning</a></li>
124
-
125
- </ul>
126
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
127
- </div>
128
-
129
-
130
- </div>
65
+
66
+
67
+
131
68
  </div>
69
+ </nav>
132
70
 
133
- <div id="documentation">
134
- <h1 class="class">DeprecatedMethodWarning</h1>
71
+ <main role="main" aria-labelledby="class-DeprecatedMethodWarning">
72
+ <h1 id="class-DeprecatedMethodWarning" class="class">
73
+ class DeprecatedMethodWarning
74
+ </h1>
135
75
 
136
- <div id="description" class="description">
137
-
76
+ <section class="description">
77
+
138
78
  <p>This warning marks single methods as deprecated. We recommend to add a
139
79
  useful warning message, which alternative to use instead.</p>
140
80
 
141
- </div><!-- description -->
81
+ </section>
142
82
 
83
+
84
+
85
+
86
+ <section id="5Buntitled-5D" class="documentation-section">
143
87
 
144
-
145
-
146
- <div id="5Buntitled-5D" class="documentation-section">
147
-
148
88
 
149
-
150
-
151
-
89
+
152
90
 
153
-
91
+
154
92
 
155
- <!-- Methods -->
156
-
157
- </div><!-- 5Buntitled-5D -->
158
-
93
+
159
94
 
160
- </div><!-- documentation -->
95
+
96
+ </section>
97
+ </main>
161
98
 
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> 2</small>.</p>
166
- </div>
167
99
 
168
- </body>
169
- </html>
100
+ <footer id="validator-badges" role="contentinfo">
101
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
102
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
103
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
104
+ </footer>
170
105
 
@@ -1,171 +1,106 @@
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">
1
+ <!DOCTYPE html>
2
+
3
+ <html>
5
4
  <head>
6
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
5
+ <meta charset="UTF-8">
7
6
 
8
- <title>Class: DeprecatedSignatureWarning</title>
7
+ <title>class DeprecatedSignatureWarning - structured_warnings</title>
9
8
 
10
- <link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
11
12
 
12
- <script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
- <script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
- <script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
- <script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
16
15
 
17
- </head>
18
- <body id="top" class="class">
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
19
18
 
20
- <div id="metadata">
21
- <div id="home-metadata">
22
- <div id="home-section" class="section">
23
- <h3 class="section-header">
24
- <a href="./index.html">Home</a>
25
- <a href="./index.html#classes">Classes</a>
26
- <a href="./index.html#methods">Methods</a>
27
- </h3>
28
- </div>
29
- </div>
30
19
 
31
- <div id="file-metadata">
32
- <div id="file-list-section" class="section">
33
- <h3 class="section-header">In Files</h3>
34
- <div class="section-body">
35
- <ul>
36
-
37
- <li><a href="./lib/structured_warnings/warning_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
- class="thickbox" title="lib/structured_warnings/warning.rb">lib/structured_warnings/warning.rb</a></li>
39
-
40
- </ul>
41
- </div>
42
- </div>
43
-
44
-
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
45
43
  </div>
46
44
 
47
- <div id="class-metadata">
48
-
49
- <!-- Parent Class -->
50
- <div id="parent-class-section" class="section">
51
- <h3 class="section-header">Parent</h3>
52
-
53
- <p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a></p>
54
-
55
- </div>
56
-
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
57
50
 
58
-
51
+ </div>
59
52
 
60
-
53
+
61
54
 
62
-
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
63
59
 
64
-
65
- </div>
60
+
61
+ <p class="link"><a href="DeprecationWarning.html">DeprecationWarning</a>
62
+
63
+ </div>
66
64
 
67
- <div id="project-metadata">
68
-
69
-
70
- <div id="fileindex-section" class="section project-section">
71
- <h3 class="section-header">Files</h3>
72
- <ul>
73
-
74
- <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
75
-
76
- </ul>
77
- </div>
78
-
79
-
80
- <div id="classindex-section" class="section project-section">
81
- <h3 class="section-header">Class/Module Index
82
- <span class="search-toggle"><img src="./images/find.png"
83
- height="16" width="16" alt="[+]"
84
- title="show/hide quicksearch" /></span></h3>
85
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
86
- <fieldset>
87
- <legend>Quicksearch</legend>
88
- <input type="text" name="quicksearch" value=""
89
- class="quicksearch-field" />
90
- </fieldset>
91
- </form>
92
-
93
- <ul class="link-list">
94
-
95
- <li><a href="./StructuredWarnings.html">StructuredWarnings</a></li>
96
-
97
- <li><a href="./StructuredWarnings/ClassMethods.html">StructuredWarnings::ClassMethods</a></li>
98
-
99
- <li><a href="./StructuredWarnings/Kernel.html">StructuredWarnings::Kernel</a></li>
100
-
101
- <li><a href="./StructuredWarnings/Test.html">StructuredWarnings::Test</a></li>
102
-
103
- <li><a href="./StructuredWarnings/Test/Assertions.html">StructuredWarnings::Test::Assertions</a></li>
104
-
105
- <li><a href="./StructuredWarnings/Test/Warner.html">StructuredWarnings::Test::Warner</a></li>
106
-
107
- <li><a href="./StructuredWarnings/Warner.html">StructuredWarnings::Warner</a></li>
108
-
109
- <li><a href="./Warning.html">Warning</a></li>
110
-
111
- <li><a href="./Warning/ClassMethods.html">Warning::ClassMethods</a></li>
112
-
113
- <li><a href="./DeprecatedMethodWarning.html">DeprecatedMethodWarning</a></li>
114
-
115
- <li><a href="./DeprecatedSignatureWarning.html">DeprecatedSignatureWarning</a></li>
116
-
117
- <li><a href="./DeprecationWarning.html">DeprecationWarning</a></li>
118
-
119
- <li><a href="./Dynamic.html">Dynamic</a></li>
120
-
121
- <li><a href="./Object.html">Object</a></li>
122
-
123
- <li><a href="./StandardWarning.html">StandardWarning</a></li>
124
-
125
- </ul>
126
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
127
- </div>
128
-
129
-
130
- </div>
65
+
66
+
67
+
131
68
  </div>
69
+ </nav>
132
70
 
133
- <div id="documentation">
134
- <h1 class="class">DeprecatedSignatureWarning</h1>
71
+ <main role="main" aria-labelledby="class-DeprecatedSignatureWarning">
72
+ <h1 id="class-DeprecatedSignatureWarning" class="class">
73
+ class DeprecatedSignatureWarning
74
+ </h1>
135
75
 
136
- <div id="description" class="description">
137
-
76
+ <section class="description">
77
+
138
78
  <p>This warning marks the given parameters for a certain methods as
139
79
  deprecated. We recommend to add a useful warning message, which alternative
140
80
  to use instead.</p>
141
81
 
142
- </div><!-- description -->
82
+ </section>
143
83
 
84
+
85
+
86
+
87
+ <section id="5Buntitled-5D" class="documentation-section">
144
88
 
145
-
146
-
147
- <div id="5Buntitled-5D" class="documentation-section">
148
-
149
89
 
150
-
151
-
152
-
90
+
153
91
 
154
-
92
+
155
93
 
156
- <!-- Methods -->
157
-
158
- </div><!-- 5Buntitled-5D -->
159
-
94
+
160
95
 
161
- </div><!-- documentation -->
96
+
97
+ </section>
98
+ </main>
162
99
 
163
- <div id="validator-badges">
164
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
165
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
166
- Rdoc Generator</a> 2</small>.</p>
167
- </div>
168
100
 
169
- </body>
170
- </html>
101
+ <footer id="validator-badges" role="contentinfo">
102
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
103
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
104
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
105
+ </footer>
171
106