JohnSmall-acts-as-hausdorff-space 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/.document +5 -0
  2. data/.gitignore +10 -0
  3. data/VERSION.yml +1 -1
  4. data/acts-as-hausdorff-space.gemspec +97 -0
  5. data/design_idea.rdoc +27 -0
  6. data/doc/LICENSE.html +113 -0
  7. data/doc/MindoroMarine.html +153 -0
  8. data/doc/MindoroMarine/Acts.html +150 -0
  9. data/doc/MindoroMarine/Acts/HausdorffSpace.html +160 -0
  10. data/doc/MindoroMarine/Acts/HausdorffSpace/ActMethods.html +230 -0
  11. data/doc/MindoroMarine/Acts/HausdorffSpace/ClassMethods.html +466 -0
  12. data/doc/MindoroMarine/Acts/HausdorffSpace/Gap.html +193 -0
  13. data/doc/MindoroMarine/Acts/HausdorffSpace/HSArray.html +234 -0
  14. data/doc/MindoroMarine/Acts/HausdorffSpace/InstanceMethods.html +1152 -0
  15. data/doc/MindoroMarine/Acts/HausdorffSpace/VirtualRoot.html +261 -0
  16. data/doc/README_rdoc.html +386 -0
  17. data/doc/created.rid +1 -0
  18. data/doc/images/brick.png +0 -0
  19. data/doc/images/brick_link.png +0 -0
  20. data/doc/images/bug.png +0 -0
  21. data/doc/images/bullet_black.png +0 -0
  22. data/doc/images/bullet_toggle_minus.png +0 -0
  23. data/doc/images/bullet_toggle_plus.png +0 -0
  24. data/doc/images/date.png +0 -0
  25. data/doc/images/find.png +0 -0
  26. data/doc/images/loadingAnimation.gif +0 -0
  27. data/doc/images/macFFBgHack.png +0 -0
  28. data/doc/images/package.png +0 -0
  29. data/doc/images/page_green.png +0 -0
  30. data/doc/images/page_white_text.png +0 -0
  31. data/doc/images/page_white_width.png +0 -0
  32. data/doc/images/plugin.png +0 -0
  33. data/doc/images/ruby.png +0 -0
  34. data/doc/images/tag_green.png +0 -0
  35. data/doc/images/wrench.png +0 -0
  36. data/doc/images/wrench_orange.png +0 -0
  37. data/doc/images/zoom.png +0 -0
  38. data/doc/index.html +140 -0
  39. data/doc/js/darkfish.js +116 -0
  40. data/doc/js/jquery.js +32 -0
  41. data/doc/js/quicksearch.js +114 -0
  42. data/doc/js/thickbox-compressed.js +10 -0
  43. data/doc/lib/acts-as-hausdorff-space_rb.html +55 -0
  44. data/doc/lib/acts_as_hausdorff_space_rb.html +53 -0
  45. data/doc/rdoc.css +696 -0
  46. data/lib/acts_as_hausdorff_space.rb +22 -14
  47. data/test/acts_as_hausdorff_space_test.rb +13 -0
  48. metadata +48 -4
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
4
+ rdoc
5
+ pkg
6
+ *~
7
+ *.*~
8
+ *.log
9
+ *.db
10
+
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 3
4
+ :patch: 4
@@ -0,0 +1,97 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{acts-as-hausdorff-space}
5
+ s.version = "0.1.4"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["John Small"]
9
+ s.date = %q{2009-05-19}
10
+ s.email = %q{jds340@gmail.com}
11
+ s.extra_rdoc_files = [
12
+ "LICENSE",
13
+ "README.rdoc"
14
+ ]
15
+ s.files = [
16
+ ".document",
17
+ ".gitignore",
18
+ "LICENSE",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "VERSION.yml",
22
+ "acts-as-hausdorff-space.gemspec",
23
+ "design_idea.rdoc",
24
+ "doc/LICENSE.html",
25
+ "doc/MindoroMarine.html",
26
+ "doc/MindoroMarine/Acts.html",
27
+ "doc/MindoroMarine/Acts/HausdorffSpace.html",
28
+ "doc/MindoroMarine/Acts/HausdorffSpace/ActMethods.html",
29
+ "doc/MindoroMarine/Acts/HausdorffSpace/ClassMethods.html",
30
+ "doc/MindoroMarine/Acts/HausdorffSpace/Gap.html",
31
+ "doc/MindoroMarine/Acts/HausdorffSpace/HSArray.html",
32
+ "doc/MindoroMarine/Acts/HausdorffSpace/InstanceMethods.html",
33
+ "doc/MindoroMarine/Acts/HausdorffSpace/VirtualRoot.html",
34
+ "doc/README_rdoc.html",
35
+ "doc/created.rid",
36
+ "doc/images/brick.png",
37
+ "doc/images/brick_link.png",
38
+ "doc/images/bug.png",
39
+ "doc/images/bullet_black.png",
40
+ "doc/images/bullet_toggle_minus.png",
41
+ "doc/images/bullet_toggle_plus.png",
42
+ "doc/images/date.png",
43
+ "doc/images/find.png",
44
+ "doc/images/loadingAnimation.gif",
45
+ "doc/images/macFFBgHack.png",
46
+ "doc/images/package.png",
47
+ "doc/images/page_green.png",
48
+ "doc/images/page_white_text.png",
49
+ "doc/images/page_white_width.png",
50
+ "doc/images/plugin.png",
51
+ "doc/images/ruby.png",
52
+ "doc/images/tag_green.png",
53
+ "doc/images/wrench.png",
54
+ "doc/images/wrench_orange.png",
55
+ "doc/images/zoom.png",
56
+ "doc/index.html",
57
+ "doc/js/darkfish.js",
58
+ "doc/js/jquery.js",
59
+ "doc/js/quicksearch.js",
60
+ "doc/js/thickbox-compressed.js",
61
+ "doc/lib/acts-as-hausdorff-space_rb.html",
62
+ "doc/lib/acts_as_hausdorff_space_rb.html",
63
+ "doc/rdoc.css",
64
+ "lib/acts-as-hausdorff-space.rb",
65
+ "lib/acts_as_hausdorff_space.rb",
66
+ "test/acts_as_hausdorff_space_test.rb",
67
+ "test/database.yml",
68
+ "test/mysql.rb",
69
+ "test/postgresql.rb",
70
+ "test/schema.rb",
71
+ "test/sqlite3.rb",
72
+ "test/test_helper.rb"
73
+ ]
74
+ s.homepage = %q{http://github.com/JohnSmall/acts-as-hausdorff-space}
75
+ s.rdoc_options = ["--charset=UTF-8"]
76
+ s.require_paths = ["lib"]
77
+ s.rubygems_version = %q{1.3.3}
78
+ s.summary = %q{Use real numbers instead of integers for nested sets because real numbers are a Hausdorff space}
79
+ s.test_files = [
80
+ "test/schema.rb",
81
+ "test/sqlite3.rb",
82
+ "test/mysql.rb",
83
+ "test/test_helper.rb",
84
+ "test/acts_as_hausdorff_space_test.rb",
85
+ "test/postgresql.rb"
86
+ ]
87
+
88
+ if s.respond_to? :specification_version then
89
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
90
+ s.specification_version = 3
91
+
92
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
93
+ else
94
+ end
95
+ else
96
+ end
97
+ end
data/design_idea.rdoc ADDED
@@ -0,0 +1,27 @@
1
+ Design concepts & constraints
2
+ =============================
3
+
4
+ The basic concept of using real numbers to implement the nested set model in reltational databases is quite simple. But as
5
+ always the devil is in the detail. SQL is a set based language and it works quite well as a declarative language, but Ruby
6
+ has a definite imperative flavour and that means you have to worry about doing things in the right order. Also although we're
7
+ using real numbers computers don't actually work like that, they emulate real numbers up to a finite precision by using binary
8
+ numbers. That means that we do have to worry about running out of gaps between any two numbers. We don't run into that problem
9
+ straight away, like we'd do if using integers for nested sets but we will run into the problem at some point.
10
+
11
+ That means when we put an item inside a parent we have to be careful to leave a good amount of space to put more elements inside
12
+ the parent without running out of real numbers. For example we could have a parent node with lft = 1 and rgt = 2, we put one child
13
+ inside it with lft=rgt=1.5. The next child we'd put at lft=rgt=1.75, the next at 1.875, i.e at half the gap between the largest child
14
+ rgt and the parent rgt = 2. It's very uneven, and we could go back a reorganise our numbering each time we add a child, but that's
15
+ the very thing we want to avoid doing because that's the whole point of using real numbers instead of integers, you shouldn't have
16
+ to juggle things about to make space for new entries. If we were using .5 of the gap left then after a million children we'd be
17
+ beyond our finite precision limit. The way I've approached this is to assume that most of the time trees are wide and shallow
18
+ and therefore we can maintain space be putting new items in say 1/1E6 of the space left. That way we'll keep a lot of space
19
+ available for new siblings, but we might run out of space if we try to build very deep trees. I'll leave it as an excerise for the
20
+ reader to experiment with this and find out where the limits lie. You can adjust the amount of available space each item uses up
21
+ by setting the bias, the default is 1E6
22
+
23
+ Going back to the issue of imperative vs declarative styles. We have to think about records in their different states. While the
24
+ model is a collection of records in a relational database we can use SQL to act declaratively on whole sets at a time. The relation
25
+ ships are determined only by the relations between the lfts and the rgts. But when the records are loaded into Ruby as ActiveRecord
26
+ instances we give them a different set of relationships based on things like "parent" and "children" and we maintain variables
27
+ to keep the tree intact. Loading and saving the records means translating between a
data/doc/LICENSE.html ADDED
@@ -0,0 +1,113 @@
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
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: LICENSE [RDoc Documentation]</title>
10
+
11
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
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>
21
+ </head>
22
+
23
+ <body class="file">
24
+ <div id="metadata">
25
+ <div id="project-metadata">
26
+
27
+
28
+ <div id="fileindex-section" class="section project-section">
29
+ <h3 class="section-header">Files</h3>
30
+ <ul>
31
+
32
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
33
+
34
+ <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
35
+
36
+ </ul>
37
+ </div>
38
+
39
+
40
+ <div id="classindex-section" class="section project-section">
41
+ <h3 class="section-header">Class Index
42
+ <span class="search-toggle"><img src="./images/find.png"
43
+ height="16" width="16" alt="[+]"
44
+ title="show/hide quicksearch" /></span></h3>
45
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
46
+ <fieldset>
47
+ <legend>Quicksearch</legend>
48
+ <input type="text" name="quicksearch" value=""
49
+ class="quicksearch-field" />
50
+ </fieldset>
51
+ </form>
52
+
53
+ <ul class="link-list">
54
+
55
+ <li><a href="./MindoroMarine.html">MindoroMarine</a></li>
56
+
57
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/ActMethods.html">MindoroMarine::Acts::HausdorffSpace::ActMethods</a></li>
58
+
59
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/ClassMethods.html">MindoroMarine::Acts::HausdorffSpace::ClassMethods</a></li>
60
+
61
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/Gap.html">MindoroMarine::Acts::HausdorffSpace::Gap</a></li>
62
+
63
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/HSArray.html">MindoroMarine::Acts::HausdorffSpace::HSArray</a></li>
64
+
65
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/InstanceMethods.html">MindoroMarine::Acts::HausdorffSpace::InstanceMethods</a></li>
66
+
67
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/VirtualRoot.html">MindoroMarine::Acts::HausdorffSpace::VirtualRoot</a></li>
68
+
69
+ </ul>
70
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
71
+ </div>
72
+
73
+
74
+ </div>
75
+ </div>
76
+
77
+ <div id="documentation">
78
+ <p>
79
+ Copyright &#169; 2009 John Small
80
+ </p>
81
+ <p>
82
+ Permission is hereby granted, free of charge, to any person obtaining a
83
+ copy of this software and associated documentation files (the
84
+ &#8220;Software&#8221;), to deal in the Software without restriction,
85
+ including without limitation the rights to use, copy, modify, merge,
86
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
87
+ permit persons to whom the Software is furnished to do so, subject to the
88
+ following conditions:
89
+ </p>
90
+ <p>
91
+ The above copyright notice and this permission notice shall be included in
92
+ all copies or substantial portions of the Software.
93
+ </p>
94
+ <p>
95
+ THE SOFTWARE IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND,
96
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
97
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
98
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
99
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
100
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
101
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
102
+ </p>
103
+
104
+ </div>
105
+
106
+ <div id="validator-badges">
107
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
108
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
109
+ Rdoc Generator</a> 1.1.6</small>.</p>
110
+ </div>
111
+ </body>
112
+ </html>
113
+
@@ -0,0 +1,153 @@
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: MindoroMarine</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="file-metadata">
26
+ <div id="file-list-section" class="section">
27
+ <h3 class="section-header">In Files</h3>
28
+ <div class="section-body">
29
+ <ul>
30
+
31
+ <li><a href="./lib/acts_as_hausdorff_space.rb.html?TB_iframe=true&amp;height=550&amp;width=785"
32
+ class="thickbox" title="lib/acts_as_hausdorff_space.rb">lib/acts_as_hausdorff_space.rb</a></li>
33
+
34
+ </ul>
35
+ </div>
36
+ </div>
37
+
38
+
39
+ </div>
40
+
41
+ <div id="class-metadata">
42
+
43
+ <!-- Parent Class -->
44
+
45
+
46
+ <!-- Namespace Contents -->
47
+
48
+ <div id="namespace-list-section" class="section">
49
+ <h3 class="section-header">Namespace</h3>
50
+ <ul class="link-list">
51
+
52
+ <li><span class="type">MODULE</span> <a href="MindoroMarine/Acts.html">MindoroMarine::Acts</a></li>
53
+
54
+ </ul>
55
+ </div>
56
+
57
+
58
+ <!-- Method Quickref -->
59
+
60
+
61
+ <!-- Included Modules -->
62
+
63
+ </div>
64
+
65
+ <div id="project-metadata">
66
+
67
+
68
+ <div id="fileindex-section" class="section project-section">
69
+ <h3 class="section-header">Files</h3>
70
+ <ul>
71
+
72
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
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 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="./MindoroMarine.html">MindoroMarine</a></li>
96
+
97
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/ActMethods.html">MindoroMarine::Acts::HausdorffSpace::ActMethods</a></li>
98
+
99
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/ClassMethods.html">MindoroMarine::Acts::HausdorffSpace::ClassMethods</a></li>
100
+
101
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/Gap.html">MindoroMarine::Acts::HausdorffSpace::Gap</a></li>
102
+
103
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/HSArray.html">MindoroMarine::Acts::HausdorffSpace::HSArray</a></li>
104
+
105
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/InstanceMethods.html">MindoroMarine::Acts::HausdorffSpace::InstanceMethods</a></li>
106
+
107
+ <li><a href="./MindoroMarine/Acts/HausdorffSpace/VirtualRoot.html">MindoroMarine::Acts::HausdorffSpace::VirtualRoot</a></li>
108
+
109
+ </ul>
110
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
111
+ </div>
112
+
113
+
114
+ </div>
115
+ </div>
116
+
117
+ <div id="documentation">
118
+ <h1 class="module">MindoroMarine</h1>
119
+
120
+ <div id="description">
121
+ <p>
122
+ ActsAsHausdorffSpace
123
+ </p>
124
+
125
+ </div>
126
+
127
+ <!-- Constants -->
128
+
129
+
130
+ <!-- Attributes -->
131
+
132
+
133
+ <!-- Methods -->
134
+
135
+
136
+ </div>
137
+
138
+
139
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
140
+
141
+ <p>Disabled; run with --debug to generate this.</p>
142
+
143
+ </div>
144
+
145
+ <div id="validator-badges">
146
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
147
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
148
+ Rdoc Generator</a> 1.1.6</small>.</p>
149
+ </div>
150
+
151
+ </body>
152
+ </html>
153
+
@@ -0,0 +1,150 @@
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: MindoroMarine::Acts</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="file-metadata">
26
+ <div id="file-list-section" class="section">
27
+ <h3 class="section-header">In Files</h3>
28
+ <div class="section-body">
29
+ <ul>
30
+
31
+ <li><a href="../lib/acts_as_hausdorff_space.rb.html?TB_iframe=true&amp;height=550&amp;width=785"
32
+ class="thickbox" title="lib/acts_as_hausdorff_space.rb">lib/acts_as_hausdorff_space.rb</a></li>
33
+
34
+ </ul>
35
+ </div>
36
+ </div>
37
+
38
+
39
+ </div>
40
+
41
+ <div id="class-metadata">
42
+
43
+ <!-- Parent Class -->
44
+
45
+
46
+ <!-- Namespace Contents -->
47
+
48
+ <div id="namespace-list-section" class="section">
49
+ <h3 class="section-header">Namespace</h3>
50
+ <ul class="link-list">
51
+
52
+ <li><span class="type">MODULE</span> <a href="Acts/HausdorffSpace.html">MindoroMarine::Acts::HausdorffSpace</a></li>
53
+
54
+ </ul>
55
+ </div>
56
+
57
+
58
+ <!-- Method Quickref -->
59
+
60
+
61
+ <!-- Included Modules -->
62
+
63
+ </div>
64
+
65
+ <div id="project-metadata">
66
+
67
+
68
+ <div id="fileindex-section" class="section project-section">
69
+ <h3 class="section-header">Files</h3>
70
+ <ul>
71
+
72
+ <li class="file"><a href="../LICENSE.html">LICENSE</a></li>
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 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="../MindoroMarine.html">MindoroMarine</a></li>
96
+
97
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/ActMethods.html">MindoroMarine::Acts::HausdorffSpace::ActMethods</a></li>
98
+
99
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/ClassMethods.html">MindoroMarine::Acts::HausdorffSpace::ClassMethods</a></li>
100
+
101
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/Gap.html">MindoroMarine::Acts::HausdorffSpace::Gap</a></li>
102
+
103
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/HSArray.html">MindoroMarine::Acts::HausdorffSpace::HSArray</a></li>
104
+
105
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/InstanceMethods.html">MindoroMarine::Acts::HausdorffSpace::InstanceMethods</a></li>
106
+
107
+ <li><a href="../MindoroMarine/Acts/HausdorffSpace/VirtualRoot.html">MindoroMarine::Acts::HausdorffSpace::VirtualRoot</a></li>
108
+
109
+ </ul>
110
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
111
+ </div>
112
+
113
+
114
+ </div>
115
+ </div>
116
+
117
+ <div id="documentation">
118
+ <h1 class="module">MindoroMarine::Acts</h1>
119
+
120
+ <div id="description">
121
+
122
+ </div>
123
+
124
+ <!-- Constants -->
125
+
126
+
127
+ <!-- Attributes -->
128
+
129
+
130
+ <!-- Methods -->
131
+
132
+
133
+ </div>
134
+
135
+
136
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
137
+
138
+ <p>Disabled; run with --debug to generate this.</p>
139
+
140
+ </div>
141
+
142
+ <div id="validator-badges">
143
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
144
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
145
+ Rdoc Generator</a> 1.1.6</small>.</p>
146
+ </div>
147
+
148
+ </body>
149
+ </html>
150
+