rubybreaker 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/NEWS +48 -0
- data/README.md +56 -20
- data/Rakefile +9 -34
- data/TODO +10 -10
- data/VERSION +1 -0
- data/bin/gen_stub_rubylib +35 -36
- data/bin/rubybreaker +1 -4
- data/lib/rubybreaker/debug.rb +8 -4
- data/lib/rubybreaker/rubylib/core.rb +738 -571
- data/lib/rubybreaker/runtime/inspector.rb +16 -7
- data/lib/rubybreaker/runtime/monitor.rb +14 -18
- data/lib/rubybreaker/runtime/object_wrapper.rb +9 -3
- data/lib/rubybreaker/runtime/overrides.rb +51 -8
- data/lib/rubybreaker/runtime/pluggable.rb +1 -3
- data/lib/rubybreaker/runtime/type_placeholder.rb +2 -6
- data/lib/rubybreaker/runtime/type_system.rb +53 -17
- data/lib/rubybreaker/runtime/typesig_parser.rb +1 -0
- data/lib/rubybreaker/runtime/util.rb +18 -0
- data/lib/rubybreaker/runtime.rb +42 -15
- data/lib/rubybreaker/type/type_comparer.rb +10 -10
- data/lib/rubybreaker/type/type_grammar.treetop +30 -21
- data/lib/rubybreaker/type/type_unparser.rb +2 -2
- data/lib/rubybreaker/typing/subtyping.rb +21 -21
- data/lib/rubybreaker/util.rb +11 -1
- data/lib/rubybreaker.rb +75 -54
- data/test/integrated/tc_class_methods.rb +35 -0
- data/test/integrated/tc_inherit_broken.rb +29 -0
- data/test/integrated/tc_method_missing.rb +1 -1
- data/test/runtime/tc_obj_wrapper.rb +104 -4
- data/test/ts_integrated.rb +2 -0
- data/test/type/tc_comparer.rb +96 -96
- data/test/type/tc_parser.rb +18 -0
- data/test/type/tc_unparser.rb +16 -0
- data/test/typing/tc_typing.rb +20 -20
- data/webpage/footer.html +1 -1
- data/webpage/header.html +7 -7
- data/webpage/index.html +65 -28
- data/webpage/rdoc/RubyBreaker/Breakable.html +280 -0
- data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +304 -0
- data/webpage/rdoc/RubyBreaker/Broken.html +308 -0
- data/webpage/rdoc/RubyBreaker/Context.html +421 -0
- data/webpage/rdoc/RubyBreaker/Debug.html +411 -0
- data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +263 -0
- data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +263 -0
- data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +214 -0
- data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +212 -0
- data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +212 -0
- data/webpage/rdoc/RubyBreaker/Errors/UserError.html +264 -0
- data/webpage/rdoc/RubyBreaker/Errors.html +209 -0
- data/webpage/rdoc/RubyBreaker/Kernel.html +259 -0
- data/webpage/rdoc/RubyBreaker/Main.html +560 -0
- data/webpage/rdoc/RubyBreaker/ObjectPosition.html +334 -0
- data/webpage/rdoc/RubyBreaker/Position.html +463 -0
- data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +308 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +380 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +324 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +354 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +379 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +382 -0
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +400 -0
- data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +411 -0
- data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +305 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypePlaceholder.html +280 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +283 -0
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +630 -0
- data/webpage/rdoc/RubyBreaker/Runtime.html +255 -0
- data/webpage/rdoc/RubyBreaker/TestCase.html +332 -0
- data/webpage/rdoc/RubyBreaker/TypeComparer.html +304 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +260 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +310 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +320 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +323 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +260 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +281 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +329 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +409 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +282 -0
- data/webpage/rdoc/RubyBreaker/TypeDefs.html +212 -0
- data/webpage/rdoc/RubyBreaker/TypeUnparser.html +273 -0
- data/webpage/rdoc/RubyBreaker/Typing.html +305 -0
- data/webpage/rdoc/RubyBreaker/Utilities.html +294 -0
- data/webpage/rdoc/RubyBreaker.html +337 -0
- data/webpage/rdoc/created.rid +26 -0
- data/webpage/rdoc/images/add.png +0 -0
- data/webpage/rdoc/images/brick.png +0 -0
- data/webpage/rdoc/images/brick_link.png +0 -0
- data/webpage/rdoc/images/bug.png +0 -0
- data/webpage/rdoc/images/bullet_black.png +0 -0
- data/webpage/rdoc/images/bullet_toggle_minus.png +0 -0
- data/webpage/rdoc/images/bullet_toggle_plus.png +0 -0
- data/webpage/rdoc/images/date.png +0 -0
- data/webpage/rdoc/images/delete.png +0 -0
- data/webpage/rdoc/images/find.png +0 -0
- data/webpage/rdoc/images/loadingAnimation.gif +0 -0
- data/webpage/rdoc/images/macFFBgHack.png +0 -0
- data/webpage/rdoc/images/package.png +0 -0
- data/webpage/rdoc/images/page_green.png +0 -0
- data/webpage/rdoc/images/page_white_text.png +0 -0
- data/webpage/rdoc/images/page_white_width.png +0 -0
- data/webpage/rdoc/images/plugin.png +0 -0
- data/webpage/rdoc/images/ruby.png +0 -0
- data/webpage/rdoc/images/tag_blue.png +0 -0
- data/webpage/rdoc/images/tag_green.png +0 -0
- data/webpage/rdoc/images/transparent.png +0 -0
- data/webpage/rdoc/images/wrench.png +0 -0
- data/webpage/rdoc/images/wrench_orange.png +0 -0
- data/webpage/rdoc/images/zoom.png +0 -0
- data/webpage/rdoc/index.html +165 -0
- data/webpage/rdoc/js/darkfish.js +153 -0
- data/webpage/rdoc/js/jquery.js +18 -0
- data/webpage/rdoc/js/navigation.js +142 -0
- data/webpage/rdoc/js/search.js +94 -0
- data/webpage/rdoc/js/search_index.js +1 -0
- data/webpage/rdoc/js/searcher.js +228 -0
- data/webpage/rdoc/rdoc.css +543 -0
- data/webpage/rdoc/table_of_contents.html +376 -0
- data/webpage/rubybreaker.css +31 -31
- metadata +93 -6
@@ -0,0 +1,376 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>Table of Contents - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
|
10
|
+
|
11
|
+
<script type="text/javascript">
|
12
|
+
var rdoc_rel_prefix = "./";
|
13
|
+
</script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
|
16
|
+
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
|
17
|
+
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
|
18
|
+
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
|
19
|
+
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
|
20
|
+
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
|
21
|
+
|
22
|
+
|
23
|
+
<body class="indexpage">
|
24
|
+
<h1>Table of Contents - RDoc Documentation</h1>
|
25
|
+
|
26
|
+
|
27
|
+
<h2 id="classes">Classes/Modules</h2>
|
28
|
+
<ul>
|
29
|
+
<li class="module">
|
30
|
+
<a href="RubyBreaker.html">RubyBreaker</a>
|
31
|
+
</li>
|
32
|
+
<li class="module">
|
33
|
+
<a href="RubyBreaker/Breakable.html">RubyBreaker::Breakable</a>
|
34
|
+
</li>
|
35
|
+
<li class="module">
|
36
|
+
<a href="RubyBreaker/Broken.html">RubyBreaker::Broken</a>
|
37
|
+
</li>
|
38
|
+
<li class="module">
|
39
|
+
<a href="RubyBreaker/Broken/BrokenEigen.html">RubyBreaker::Broken::BrokenEigen</a>
|
40
|
+
</li>
|
41
|
+
<li class="class">
|
42
|
+
<a href="RubyBreaker/Context.html">RubyBreaker::Context</a>
|
43
|
+
</li>
|
44
|
+
<li class="module">
|
45
|
+
<a href="RubyBreaker/Debug.html">RubyBreaker::Debug</a>
|
46
|
+
</li>
|
47
|
+
<li class="module">
|
48
|
+
<a href="RubyBreaker/Errors.html">RubyBreaker::Errors</a>
|
49
|
+
</li>
|
50
|
+
<li class="class">
|
51
|
+
<a href="RubyBreaker/Errors/InternalError.html">RubyBreaker::Errors::InternalError</a>
|
52
|
+
</li>
|
53
|
+
<li class="class">
|
54
|
+
<a href="RubyBreaker/Errors/InvalidSubtypeCheck.html">RubyBreaker::Errors::InvalidSubtypeCheck</a>
|
55
|
+
</li>
|
56
|
+
<li class="class">
|
57
|
+
<a href="RubyBreaker/Errors/InvalidTypeConstruction.html">RubyBreaker::Errors::InvalidTypeConstruction</a>
|
58
|
+
</li>
|
59
|
+
<li class="class">
|
60
|
+
<a href="RubyBreaker/Errors/SubtypeFailure.html">RubyBreaker::Errors::SubtypeFailure</a>
|
61
|
+
</li>
|
62
|
+
<li class="class">
|
63
|
+
<a href="RubyBreaker/Errors/TypeError.html">RubyBreaker::Errors::TypeError</a>
|
64
|
+
</li>
|
65
|
+
<li class="class">
|
66
|
+
<a href="RubyBreaker/Errors/UserError.html">RubyBreaker::Errors::UserError</a>
|
67
|
+
</li>
|
68
|
+
<li class="module">
|
69
|
+
<a href="RubyBreaker/Kernel.html">RubyBreaker::Kernel</a>
|
70
|
+
</li>
|
71
|
+
<li class="module">
|
72
|
+
<a href="RubyBreaker/Main.html">RubyBreaker::Main</a>
|
73
|
+
</li>
|
74
|
+
<li class="class">
|
75
|
+
<a href="RubyBreaker/ObjectPosition.html">RubyBreaker::ObjectPosition</a>
|
76
|
+
</li>
|
77
|
+
<li class="class">
|
78
|
+
<a href="RubyBreaker/Position.html">RubyBreaker::Position</a>
|
79
|
+
</li>
|
80
|
+
<li class="module">
|
81
|
+
<a href="RubyBreaker/RubyTypeUtils.html">RubyBreaker::RubyTypeUtils</a>
|
82
|
+
</li>
|
83
|
+
<li class="module">
|
84
|
+
<a href="RubyBreaker/Runtime.html">RubyBreaker::Runtime</a>
|
85
|
+
</li>
|
86
|
+
<li class="module">
|
87
|
+
<a href="RubyBreaker/Runtime/Inspector.html">RubyBreaker::Runtime::Inspector</a>
|
88
|
+
</li>
|
89
|
+
<li class="class">
|
90
|
+
<a href="RubyBreaker/Runtime/MethodInfo.html">RubyBreaker::Runtime::MethodInfo</a>
|
91
|
+
</li>
|
92
|
+
<li class="class">
|
93
|
+
<a href="RubyBreaker/Runtime/Monitor.html">RubyBreaker::Runtime::Monitor</a>
|
94
|
+
</li>
|
95
|
+
<li class="module">
|
96
|
+
<a href="RubyBreaker/Runtime/MonitorInstaller.html">RubyBreaker::Runtime::MonitorInstaller</a>
|
97
|
+
</li>
|
98
|
+
<li class="class">
|
99
|
+
<a href="RubyBreaker/Runtime/MonitorSwitch.html">RubyBreaker::Runtime::MonitorSwitch</a>
|
100
|
+
</li>
|
101
|
+
<li class="module">
|
102
|
+
<a href="RubyBreaker/Runtime/MonitorUtils.html">RubyBreaker::Runtime::MonitorUtils</a>
|
103
|
+
</li>
|
104
|
+
<li class="class">
|
105
|
+
<a href="RubyBreaker/Runtime/ObjectWrapper.html">RubyBreaker::Runtime::ObjectWrapper</a>
|
106
|
+
</li>
|
107
|
+
<li class="module">
|
108
|
+
<a href="RubyBreaker/Runtime/Pluggable.html">RubyBreaker::Runtime::Pluggable</a>
|
109
|
+
</li>
|
110
|
+
<li class="class">
|
111
|
+
<a href="RubyBreaker/Runtime/TypePlaceholder.html">RubyBreaker::Runtime::TypePlaceholder</a>
|
112
|
+
</li>
|
113
|
+
<li class="module">
|
114
|
+
<a href="RubyBreaker/Runtime/TypeSigParser.html">RubyBreaker::Runtime::TypeSigParser</a>
|
115
|
+
</li>
|
116
|
+
<li class="class">
|
117
|
+
<a href="RubyBreaker/Runtime/TypeSystem.html">RubyBreaker::Runtime::TypeSystem</a>
|
118
|
+
</li>
|
119
|
+
<li class="module">
|
120
|
+
<a href="RubyBreaker/TestCase.html">RubyBreaker::TestCase</a>
|
121
|
+
</li>
|
122
|
+
<li class="module">
|
123
|
+
<a href="RubyBreaker/TypeComparer.html">RubyBreaker::TypeComparer</a>
|
124
|
+
</li>
|
125
|
+
<li class="module">
|
126
|
+
<a href="RubyBreaker/TypeDefs.html">RubyBreaker::TypeDefs</a>
|
127
|
+
</li>
|
128
|
+
<li class="class">
|
129
|
+
<a href="RubyBreaker/TypeDefs/AnyType.html">RubyBreaker::TypeDefs::AnyType</a>
|
130
|
+
</li>
|
131
|
+
<li class="class">
|
132
|
+
<a href="RubyBreaker/TypeDefs/BlockType.html">RubyBreaker::TypeDefs::BlockType</a>
|
133
|
+
</li>
|
134
|
+
<li class="class">
|
135
|
+
<a href="RubyBreaker/TypeDefs/DuckType.html">RubyBreaker::TypeDefs::DuckType</a>
|
136
|
+
</li>
|
137
|
+
<li class="class">
|
138
|
+
<a href="RubyBreaker/TypeDefs/FusionType.html">RubyBreaker::TypeDefs::FusionType</a>
|
139
|
+
</li>
|
140
|
+
<li class="class">
|
141
|
+
<a href="RubyBreaker/TypeDefs/MethodListType.html">RubyBreaker::TypeDefs::MethodListType</a>
|
142
|
+
</li>
|
143
|
+
<li class="class">
|
144
|
+
<a href="RubyBreaker/TypeDefs/MethodType.html">RubyBreaker::TypeDefs::MethodType</a>
|
145
|
+
</li>
|
146
|
+
<li class="class">
|
147
|
+
<a href="RubyBreaker/TypeDefs/NilType.html">RubyBreaker::TypeDefs::NilType</a>
|
148
|
+
</li>
|
149
|
+
<li class="class">
|
150
|
+
<a href="RubyBreaker/TypeDefs/NominalType.html">RubyBreaker::TypeDefs::NominalType</a>
|
151
|
+
</li>
|
152
|
+
<li class="class">
|
153
|
+
<a href="RubyBreaker/TypeDefs/OptionalType.html">RubyBreaker::TypeDefs::OptionalType</a>
|
154
|
+
</li>
|
155
|
+
<li class="class">
|
156
|
+
<a href="RubyBreaker/TypeDefs/OrType.html">RubyBreaker::TypeDefs::OrType</a>
|
157
|
+
</li>
|
158
|
+
<li class="class">
|
159
|
+
<a href="RubyBreaker/TypeDefs/SelfType.html">RubyBreaker::TypeDefs::SelfType</a>
|
160
|
+
</li>
|
161
|
+
<li class="class">
|
162
|
+
<a href="RubyBreaker/TypeDefs/Type.html">RubyBreaker::TypeDefs::Type</a>
|
163
|
+
</li>
|
164
|
+
<li class="class">
|
165
|
+
<a href="RubyBreaker/TypeDefs/VarLengthType.html">RubyBreaker::TypeDefs::VarLengthType</a>
|
166
|
+
</li>
|
167
|
+
<li class="module">
|
168
|
+
<a href="RubyBreaker/TypeUnparser.html">RubyBreaker::TypeUnparser</a>
|
169
|
+
</li>
|
170
|
+
<li class="module">
|
171
|
+
<a href="RubyBreaker/Typing.html">RubyBreaker::Typing</a>
|
172
|
+
</li>
|
173
|
+
<li class="module">
|
174
|
+
<a href="RubyBreaker/Utilities.html">RubyBreaker::Utilities</a>
|
175
|
+
</li>
|
176
|
+
|
177
|
+
</ul>
|
178
|
+
|
179
|
+
<h2 id="methods">Methods</h2>
|
180
|
+
<ul>
|
181
|
+
|
182
|
+
<li class="method"><a href="RubyBreaker/Utilities.html#method-c-camelize">::camelize — RubyBreaker::Utilities</a>
|
183
|
+
|
184
|
+
<li class="method"><a href="RubyBreaker/TypeComparer.html#method-c-compare">::compare — RubyBreaker::TypeComparer</a>
|
185
|
+
|
186
|
+
<li class="method"><a href="RubyBreaker/Position.html#method-c-convert_caller_to_pos">::convert_caller_to_pos — RubyBreaker::Position</a>
|
187
|
+
|
188
|
+
<li class="method"><a href="RubyBreaker/Debug.html#method-c-debug_mode-3F">::debug_mode? — RubyBreaker::Debug</a>
|
189
|
+
|
190
|
+
<li class="method"><a href="RubyBreaker/Debug.html#method-c-feed_line">::feed_line — RubyBreaker::Debug</a>
|
191
|
+
|
192
|
+
<li class="method"><a href="RubyBreaker/Position.html#method-c-get">::get — RubyBreaker::Position</a>
|
193
|
+
|
194
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorUtils.html#method-c-get_alt_meth_name">::get_alt_meth_name — RubyBreaker::Runtime::MonitorUtils</a>
|
195
|
+
|
196
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorUtils.html#method-c-get_orig_meth_name">::get_orig_meth_name — RubyBreaker::Runtime::MonitorUtils</a>
|
197
|
+
|
198
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/SelfType.html#method-c-get_self">::get_self — RubyBreaker::TypeDefs::SelfType</a>
|
199
|
+
|
200
|
+
<li class="method"><a href="RubyBreaker/Breakable.html#method-c-included">::included — RubyBreaker::Breakable</a>
|
201
|
+
|
202
|
+
<li class="method"><a href="RubyBreaker/TestCase.html#method-c-included">::included — RubyBreaker::TestCase</a>
|
203
|
+
|
204
|
+
<li class="method"><a href="RubyBreaker/Broken.html#method-c-included">::included — RubyBreaker::Broken</a>
|
205
|
+
|
206
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-input">::input — RubyBreaker::Main</a>
|
207
|
+
|
208
|
+
<li class="method"><a href="RubyBreaker/Runtime/Inspector.html#method-c-inspect_all">::inspect_all — RubyBreaker::Runtime::Inspector</a>
|
209
|
+
|
210
|
+
<li class="method"><a href="RubyBreaker/Runtime/Inspector.html#method-c-inspect_class_meth">::inspect_class_meth — RubyBreaker::Runtime::Inspector</a>
|
211
|
+
|
212
|
+
<li class="method"><a href="RubyBreaker/Runtime/Inspector.html#method-c-inspect_meth">::inspect_meth — RubyBreaker::Runtime::Inspector</a>
|
213
|
+
|
214
|
+
<li class="method"><a href="RubyBreaker/Runtime/Inspector.html#method-c-inspect_meths">::inspect_meths — RubyBreaker::Runtime::Inspector</a>
|
215
|
+
|
216
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorInstaller.html#method-c-install_module_monitor">::install_module_monitor — RubyBreaker::Runtime::MonitorInstaller</a>
|
217
|
+
|
218
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorInstaller.html#method-c-is_module-3F">::is_module? — RubyBreaker::Runtime::MonitorInstaller</a>
|
219
|
+
|
220
|
+
<li class="method"><a href="RubyBreaker.html#method-c-monitor">::monitor — RubyBreaker</a>
|
221
|
+
|
222
|
+
<li class="method"><a href="RubyBreaker/Debug.html#method-c-msg">::msg — RubyBreaker::Debug</a>
|
223
|
+
|
224
|
+
<li class="method"><a href="RubyBreaker/Position.html#method-c-new">::new — RubyBreaker::Position</a>
|
225
|
+
|
226
|
+
<li class="method"><a href="RubyBreaker/Runtime/ObjectWrapper.html#method-c-new">::new — RubyBreaker::Runtime::ObjectWrapper</a>
|
227
|
+
|
228
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/MethodListType.html#method-c-new">::new — RubyBreaker::TypeDefs::MethodListType</a>
|
229
|
+
|
230
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/BlockType.html#method-c-new">::new — RubyBreaker::TypeDefs::BlockType</a>
|
231
|
+
|
232
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/MethodType.html#method-c-new">::new — RubyBreaker::TypeDefs::MethodType</a>
|
233
|
+
|
234
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorSwitch.html#method-c-new">::new — RubyBreaker::Runtime::MonitorSwitch</a>
|
235
|
+
|
236
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypePlaceholder.html#method-c-new">::new — RubyBreaker::Runtime::TypePlaceholder</a>
|
237
|
+
|
238
|
+
<li class="method"><a href="RubyBreaker/Runtime/Monitor.html#method-c-new">::new — RubyBreaker::Runtime::Monitor</a>
|
239
|
+
|
240
|
+
<li class="method"><a href="RubyBreaker/Errors/UserError.html#method-c-new">::new — RubyBreaker::Errors::UserError</a>
|
241
|
+
|
242
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/FusionType.html#method-c-new">::new — RubyBreaker::TypeDefs::FusionType</a>
|
243
|
+
|
244
|
+
<li class="method"><a href="RubyBreaker/Errors/InvalidSubtypeCheck.html#method-c-new">::new — RubyBreaker::Errors::InvalidSubtypeCheck</a>
|
245
|
+
|
246
|
+
<li class="method"><a href="RubyBreaker/Errors/InternalError.html#method-c-new">::new — RubyBreaker::Errors::InternalError</a>
|
247
|
+
|
248
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/Type.html#method-c-new">::new — RubyBreaker::TypeDefs::Type</a>
|
249
|
+
|
250
|
+
<li class="method"><a href="RubyBreaker/Context.html#method-c-new">::new — RubyBreaker::Context</a>
|
251
|
+
|
252
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/OptionalType.html#method-c-new">::new — RubyBreaker::TypeDefs::OptionalType</a>
|
253
|
+
|
254
|
+
<li class="method"><a href="RubyBreaker/ObjectPosition.html#method-c-new">::new — RubyBreaker::ObjectPosition</a>
|
255
|
+
|
256
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/AnyType.html#method-c-new">::new — RubyBreaker::TypeDefs::AnyType</a>
|
257
|
+
|
258
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/NilType.html#method-c-new">::new — RubyBreaker::TypeDefs::NilType</a>
|
259
|
+
|
260
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/NominalType.html#method-c-new">::new — RubyBreaker::TypeDefs::NominalType</a>
|
261
|
+
|
262
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/VarLengthType.html#method-c-new">::new — RubyBreaker::TypeDefs::VarLengthType</a>
|
263
|
+
|
264
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/OrType.html#method-c-new">::new — RubyBreaker::TypeDefs::OrType</a>
|
265
|
+
|
266
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/SelfType.html#method-c-new">::new — RubyBreaker::TypeDefs::SelfType</a>
|
267
|
+
|
268
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/DuckType.html#method-c-new">::new — RubyBreaker::TypeDefs::DuckType</a>
|
269
|
+
|
270
|
+
<li class="method"><a href="RubyBreaker/Runtime/MethodInfo.html#method-c-new">::new — RubyBreaker::Runtime::MethodInfo</a>
|
271
|
+
|
272
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-output">::output — RubyBreaker::Main</a>
|
273
|
+
|
274
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSigParser.html#method-c-parse">::parse — RubyBreaker::Runtime::TypeSigParser</a>
|
275
|
+
|
276
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-pp_methods">::pp_methods — RubyBreaker::Main</a>
|
277
|
+
|
278
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-pp_module">::pp_module — RubyBreaker::Main</a>
|
279
|
+
|
280
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorInstaller.html#method-c-rename_meth">::rename_meth — RubyBreaker::Runtime::MonitorInstaller</a>
|
281
|
+
|
282
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorInstaller.html#method-c-report">::report — RubyBreaker::Runtime::MonitorInstaller</a>
|
283
|
+
|
284
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorUtils.html#method-c-route">::route — RubyBreaker::Runtime::MonitorUtils</a>
|
285
|
+
|
286
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-run">::run — RubyBreaker::Main</a>
|
287
|
+
|
288
|
+
<li class="method"><a href="RubyBreaker/Position.html#method-c-set">::set — RubyBreaker::Position</a>
|
289
|
+
|
290
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/SelfType.html#method-c-set_self">::set_self — RubyBreaker::TypeDefs::SelfType</a>
|
291
|
+
|
292
|
+
<li class="method"><a href="RubyBreaker/TestCase.html#method-c-setup">::setup — RubyBreaker::TestCase</a>
|
293
|
+
|
294
|
+
<li class="method"><a href="RubyBreaker/Main.html#method-c-setup">::setup — RubyBreaker::Main</a>
|
295
|
+
|
296
|
+
<li class="method"><a href="RubyBreaker/Debug.html#method-c-short_msg">::short_msg — RubyBreaker::Debug</a>
|
297
|
+
|
298
|
+
<li class="method"><a href="RubyBreaker/RubyTypeUtils.html#method-c-subclass_rel-3F">::subclass_rel? — RubyBreaker::RubyTypeUtils</a>
|
299
|
+
|
300
|
+
<li class="method"><a href="RubyBreaker/RubyTypeUtils.html#method-c-submodule_rel-3F">::submodule_rel? — RubyBreaker::RubyTypeUtils</a>
|
301
|
+
|
302
|
+
<li class="method"><a href="RubyBreaker/Typing.html#method-c-subtype_rel-3F">::subtype_rel? — RubyBreaker::Typing</a>
|
303
|
+
|
304
|
+
<li class="method"><a href="RubyBreaker/TestCase.html#method-c-teardown">::teardown — RubyBreaker::TestCase</a>
|
305
|
+
|
306
|
+
<li class="method"><a href="RubyBreaker/Debug.html#method-c-token">::token — RubyBreaker::Debug</a>
|
307
|
+
|
308
|
+
<li class="method"><a href="RubyBreaker/Utilities.html#method-c-underscore">::underscore — RubyBreaker::Utilities</a>
|
309
|
+
|
310
|
+
<li class="method"><a href="RubyBreaker/TypeUnparser.html#method-c-unparse">::unparse — RubyBreaker::TypeUnparser</a>
|
311
|
+
|
312
|
+
<li class="method"><a href="RubyBreaker/Runtime/ObjectWrapper.html#method-i-__rubybreaker_obj">#__rubybreaker_obj — RubyBreaker::Runtime::ObjectWrapper</a>
|
313
|
+
|
314
|
+
<li class="method"><a href="RubyBreaker/Runtime/ObjectWrapper.html#method-i-__rubybreaker_type">#__rubybreaker_type — RubyBreaker::Runtime::ObjectWrapper</a>
|
315
|
+
|
316
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/DuckType.html#method-i-add_meth">#add_meth — RubyBreaker::TypeDefs::DuckType</a>
|
317
|
+
|
318
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSystem.html#method-i-after_method">#after_method — RubyBreaker::Runtime::TypeSystem</a>
|
319
|
+
|
320
|
+
<li class="method"><a href="RubyBreaker/Runtime/Pluggable.html#method-i-after_method_call">#after_method_call — RubyBreaker::Runtime::Pluggable</a>
|
321
|
+
|
322
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSystem.html#method-i-before_method">#before_method — RubyBreaker::Runtime::TypeSystem</a>
|
323
|
+
|
324
|
+
<li class="method"><a href="RubyBreaker/Runtime/Pluggable.html#method-i-before_method_call">#before_method_call — RubyBreaker::Runtime::Pluggable</a>
|
325
|
+
|
326
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/Type.html#method-i-eql-3F">#eql? — RubyBreaker::TypeDefs::Type</a>
|
327
|
+
|
328
|
+
<li class="method"><a href="RubyBreaker/Context.html#method-i-format_with_msg">#format_with_msg — RubyBreaker::Context</a>
|
329
|
+
|
330
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSystem.html#method-i-is_object_wrapped-3F">#is_object_wrapped? — RubyBreaker::Runtime::TypeSystem</a>
|
331
|
+
|
332
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSystem.html#method-i-lub">#lub — RubyBreaker::Runtime::TypeSystem</a>
|
333
|
+
|
334
|
+
<li class="method"><a href="RubyBreaker/Runtime/TypeSystem.html#method-i-lub_helper">#lub_helper — RubyBreaker::Runtime::TypeSystem</a>
|
335
|
+
|
336
|
+
<li class="method"><a href="RubyBreaker/Runtime/ObjectWrapper.html#method-i-method_missing">#method_missing — RubyBreaker::Runtime::ObjectWrapper</a>
|
337
|
+
|
338
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/FusionType.html#method-i-mod">#mod — RubyBreaker::TypeDefs::FusionType</a>
|
339
|
+
|
340
|
+
<li class="method"><a href="RubyBreaker/Runtime/Monitor.html#method-i-monitor_after_method">#monitor_after_method — RubyBreaker::Runtime::Monitor</a>
|
341
|
+
|
342
|
+
<li class="method"><a href="RubyBreaker/Runtime/Monitor.html#method-i-monitor_before_method">#monitor_before_method — RubyBreaker::Runtime::Monitor</a>
|
343
|
+
|
344
|
+
<li class="method"><a href="RubyBreaker/Context.html#method-i-pop">#pop — RubyBreaker::Context</a>
|
345
|
+
|
346
|
+
<li class="method"><a href="RubyBreaker/Context.html#method-i-push">#push — RubyBreaker::Context</a>
|
347
|
+
|
348
|
+
<li class="method"><a href="RubyBreaker/Runtime/ObjectWrapper.html#method-i-respond_to-3F">#respond_to? — RubyBreaker::Runtime::ObjectWrapper</a>
|
349
|
+
|
350
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorSwitch.html#method-i-set_to">#set_to — RubyBreaker::Runtime::MonitorSwitch</a>
|
351
|
+
|
352
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/Type.html#method-i-subtype_of-3F">#subtype_of? — RubyBreaker::TypeDefs::Type</a>
|
353
|
+
|
354
|
+
<li class="method"><a href="RubyBreaker/Kernel.html#method-i-suppress_warning">#suppress_warning — RubyBreaker::Kernel</a>
|
355
|
+
|
356
|
+
<li class="method"><a href="RubyBreaker/Position.html#method-i-to_s">#to_s — RubyBreaker::Position</a>
|
357
|
+
|
358
|
+
<li class="method"><a href="RubyBreaker/ObjectPosition.html#method-i-to_s">#to_s — RubyBreaker::ObjectPosition</a>
|
359
|
+
|
360
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorSwitch.html#method-i-turn_off">#turn_off — RubyBreaker::Runtime::MonitorSwitch</a>
|
361
|
+
|
362
|
+
<li class="method"><a href="RubyBreaker/Runtime/MonitorSwitch.html#method-i-turn_on">#turn_on — RubyBreaker::Runtime::MonitorSwitch</a>
|
363
|
+
|
364
|
+
<li class="method"><a href="RubyBreaker/Broken/BrokenEigen.html#method-i-typesig">#typesig — RubyBreaker::Broken::BrokenEigen</a>
|
365
|
+
|
366
|
+
<li class="method"><a href="RubyBreaker/TypeDefs/Type.html#method-i-unparse">#unparse — RubyBreaker::TypeDefs::Type</a>
|
367
|
+
|
368
|
+
</ul>
|
369
|
+
|
370
|
+
|
371
|
+
<footer id="validator-badges">
|
372
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
373
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
|
374
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
375
|
+
</footer>
|
376
|
+
|
data/webpage/rubybreaker.css
CHANGED
@@ -1,53 +1,53 @@
|
|
1
1
|
body {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
background-color: #aa0000;
|
3
|
+
/* font-family: Verdana, Arial, "sans-serif"; */
|
4
|
+
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
|
5
|
+
width: 100%;
|
6
|
+
text-align: center;
|
7
|
+
padding:0px;
|
8
|
+
margin: 0px;
|
9
|
+
font-size:0.9em;
|
10
|
+
line-height:150%;
|
11
|
+
color: #2f2f2f;
|
12
12
|
}
|
13
13
|
|
14
14
|
/* Gradient transparent - color - transparent */
|
15
15
|
hr {
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
16
|
+
border: 0;
|
17
|
+
height: 2px;
|
18
|
+
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
|
19
|
+
background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
|
20
|
+
background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
|
21
|
+
background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
|
22
|
+
margin: 40px 0px 40px 0px;
|
23
23
|
}
|
24
24
|
|
25
25
|
h1,
|
26
26
|
h2,
|
27
27
|
h3,
|
28
28
|
h4 {
|
29
|
-
|
30
|
-
|
29
|
+
margin: 40px 0px 20px 0px;
|
30
|
+
color: #990000;
|
31
31
|
}
|
32
32
|
|
33
33
|
code {
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
/* color: #5c5c5c; */
|
35
|
+
font-family: "Lucida Console", "Courier New", Monospace;
|
36
|
+
font-weight: bold;
|
37
37
|
}
|
38
38
|
|
39
39
|
div#content {
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
40
|
+
background-color: white;
|
41
|
+
width: 660px;
|
42
|
+
text-align: left;
|
43
|
+
padding: 20px 80px 40px 80px;
|
44
|
+
margin: 0px;
|
45
|
+
-moz-box-shadow: 0 0 30px 5px #333;
|
46
|
+
-webkit-box-shadow: 0 0 30px 5px #333;
|
47
47
|
}
|
48
48
|
|
49
49
|
div#logo {
|
50
|
-
|
51
|
-
|
50
|
+
padding-bottom: 20px;
|
51
|
+
text-align:center;
|
52
52
|
}
|
53
53
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubybreaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: treetop
|
@@ -47,6 +47,7 @@ files:
|
|
47
47
|
- lib/rubybreaker/runtime/type_placeholder.rb
|
48
48
|
- lib/rubybreaker/runtime/type_system.rb
|
49
49
|
- lib/rubybreaker/runtime/typesig_parser.rb
|
50
|
+
- lib/rubybreaker/runtime/util.rb
|
50
51
|
- lib/rubybreaker/runtime.rb
|
51
52
|
- lib/rubybreaker/test/testcase.rb
|
52
53
|
- lib/rubybreaker/test.rb
|
@@ -64,9 +65,13 @@ files:
|
|
64
65
|
- bin/rubybreaker
|
65
66
|
- AUTHORS
|
66
67
|
- LICENSE
|
68
|
+
- NEWS
|
67
69
|
- Rakefile
|
68
70
|
- README.md
|
69
71
|
- TODO
|
72
|
+
- VERSION
|
73
|
+
- test/integrated/tc_class_methods.rb
|
74
|
+
- test/integrated/tc_inherit_broken.rb
|
70
75
|
- test/integrated/tc_method_missing.rb
|
71
76
|
- test/integrated/tc_simple1.rb
|
72
77
|
- test/runtime/tc_obj_wrapper.rb
|
@@ -85,17 +90,99 @@ files:
|
|
85
90
|
- webpage/header.html
|
86
91
|
- webpage/images/logo.png
|
87
92
|
- webpage/index.html
|
93
|
+
- webpage/rdoc/created.rid
|
94
|
+
- webpage/rdoc/images/add.png
|
95
|
+
- webpage/rdoc/images/brick.png
|
96
|
+
- webpage/rdoc/images/brick_link.png
|
97
|
+
- webpage/rdoc/images/bug.png
|
98
|
+
- webpage/rdoc/images/bullet_black.png
|
99
|
+
- webpage/rdoc/images/bullet_toggle_minus.png
|
100
|
+
- webpage/rdoc/images/bullet_toggle_plus.png
|
101
|
+
- webpage/rdoc/images/date.png
|
102
|
+
- webpage/rdoc/images/delete.png
|
103
|
+
- webpage/rdoc/images/find.png
|
104
|
+
- webpage/rdoc/images/loadingAnimation.gif
|
105
|
+
- webpage/rdoc/images/macFFBgHack.png
|
106
|
+
- webpage/rdoc/images/package.png
|
107
|
+
- webpage/rdoc/images/page_green.png
|
108
|
+
- webpage/rdoc/images/page_white_text.png
|
109
|
+
- webpage/rdoc/images/page_white_width.png
|
110
|
+
- webpage/rdoc/images/plugin.png
|
111
|
+
- webpage/rdoc/images/ruby.png
|
112
|
+
- webpage/rdoc/images/tag_blue.png
|
113
|
+
- webpage/rdoc/images/tag_green.png
|
114
|
+
- webpage/rdoc/images/transparent.png
|
115
|
+
- webpage/rdoc/images/wrench.png
|
116
|
+
- webpage/rdoc/images/wrench_orange.png
|
117
|
+
- webpage/rdoc/images/zoom.png
|
118
|
+
- webpage/rdoc/index.html
|
119
|
+
- webpage/rdoc/js/darkfish.js
|
120
|
+
- webpage/rdoc/js/jquery.js
|
121
|
+
- webpage/rdoc/js/navigation.js
|
122
|
+
- webpage/rdoc/js/search.js
|
123
|
+
- webpage/rdoc/js/search_index.js
|
124
|
+
- webpage/rdoc/js/searcher.js
|
125
|
+
- webpage/rdoc/rdoc.css
|
126
|
+
- webpage/rdoc/RubyBreaker/Breakable.html
|
127
|
+
- webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html
|
128
|
+
- webpage/rdoc/RubyBreaker/Broken.html
|
129
|
+
- webpage/rdoc/RubyBreaker/Context.html
|
130
|
+
- webpage/rdoc/RubyBreaker/Debug.html
|
131
|
+
- webpage/rdoc/RubyBreaker/Errors/InternalError.html
|
132
|
+
- webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html
|
133
|
+
- webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html
|
134
|
+
- webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html
|
135
|
+
- webpage/rdoc/RubyBreaker/Errors/TypeError.html
|
136
|
+
- webpage/rdoc/RubyBreaker/Errors/UserError.html
|
137
|
+
- webpage/rdoc/RubyBreaker/Errors.html
|
138
|
+
- webpage/rdoc/RubyBreaker/Kernel.html
|
139
|
+
- webpage/rdoc/RubyBreaker/Main.html
|
140
|
+
- webpage/rdoc/RubyBreaker/ObjectPosition.html
|
141
|
+
- webpage/rdoc/RubyBreaker/Position.html
|
142
|
+
- webpage/rdoc/RubyBreaker/RubyTypeUtils.html
|
143
|
+
- webpage/rdoc/RubyBreaker/Runtime/Inspector.html
|
144
|
+
- webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html
|
145
|
+
- webpage/rdoc/RubyBreaker/Runtime/Monitor.html
|
146
|
+
- webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html
|
147
|
+
- webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html
|
148
|
+
- webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html
|
149
|
+
- webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html
|
150
|
+
- webpage/rdoc/RubyBreaker/Runtime/Pluggable.html
|
151
|
+
- webpage/rdoc/RubyBreaker/Runtime/TypePlaceholder.html
|
152
|
+
- webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html
|
153
|
+
- webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html
|
154
|
+
- webpage/rdoc/RubyBreaker/Runtime.html
|
155
|
+
- webpage/rdoc/RubyBreaker/TestCase.html
|
156
|
+
- webpage/rdoc/RubyBreaker/TypeComparer.html
|
157
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html
|
158
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html
|
159
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html
|
160
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html
|
161
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html
|
162
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html
|
163
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/NilType.html
|
164
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html
|
165
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html
|
166
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/OrType.html
|
167
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html
|
168
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/Type.html
|
169
|
+
- webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html
|
170
|
+
- webpage/rdoc/RubyBreaker/TypeDefs.html
|
171
|
+
- webpage/rdoc/RubyBreaker/TypeUnparser.html
|
172
|
+
- webpage/rdoc/RubyBreaker/Typing.html
|
173
|
+
- webpage/rdoc/RubyBreaker/Utilities.html
|
174
|
+
- webpage/rdoc/RubyBreaker.html
|
175
|
+
- webpage/rdoc/table_of_contents.html
|
88
176
|
- webpage/rubybreaker.css
|
89
|
-
homepage:
|
177
|
+
homepage: http://github.com/rockalizer/rubybreaker
|
90
178
|
licenses:
|
91
179
|
- BSD
|
92
180
|
post_install_message:
|
93
181
|
rdoc_options:
|
94
182
|
- -x
|
95
|
-
- lib/rubybreaker/rubylib/*.rb
|
96
|
-
- -x
|
97
183
|
- lib/rubybreaker/type/type_grammar.rb
|
98
184
|
- lib
|
185
|
+
- LICENSE
|
99
186
|
require_paths:
|
100
187
|
- lib
|
101
188
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -115,5 +202,5 @@ rubyforge_project:
|
|
115
202
|
rubygems_version: 1.8.23
|
116
203
|
signing_key:
|
117
204
|
specification_version: 3
|
118
|
-
summary:
|
205
|
+
summary: Dynamic Type Documentation Tool for Ruby
|
119
206
|
test_files: []
|