yard 0.9.21 → 0.9.26

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of yard might be problematic. Click here for more details.

Files changed (250) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +0 -0
  3. data/.gitattributes +4 -0
  4. data/.github/FUNDING.yml +3 -0
  5. data/.github/ISSUE_TEMPLATE.md +6 -6
  6. data/.github/PULL_REQUEST_TEMPLATE.md +5 -5
  7. data/.github/workflows/ci.yml +42 -0
  8. data/.github/workflows/gem.yml +27 -0
  9. data/.gitignore +0 -0
  10. data/.rspec +0 -0
  11. data/.rubocop.yml +37 -24
  12. data/.travis.yml +0 -3
  13. data/.yardopts +0 -0
  14. data/.yardopts_guide +0 -0
  15. data/.yardopts_i18n +0 -0
  16. data/CHANGELOG.md +47 -4
  17. data/CONTRIBUTING.md +2 -2
  18. data/Gemfile +4 -3
  19. data/README.md +97 -102
  20. data/Rakefile +2 -0
  21. data/lib/yard/cli/diff.rb +4 -1
  22. data/lib/yard/cli/server.rb +22 -13
  23. data/lib/yard/code_objects/method_object.rb +1 -1
  24. data/lib/yard/code_objects/namespace_mapper.rb +30 -3
  25. data/lib/yard/code_objects/proxy.rb +2 -1
  26. data/lib/yard/globals.rb +1 -1
  27. data/lib/yard/handlers/c/base.rb +35 -0
  28. data/lib/yard/handlers/ruby/mixin_handler.rb +4 -1
  29. data/lib/yard/parser/ruby/legacy/irb/slex.rb +1 -1
  30. data/lib/yard/parser/ruby/ruby_parser.rb +6 -4
  31. data/lib/yard/parser/ruby/token_resolver.rb +3 -1
  32. data/lib/yard/parser/source_parser.rb +1 -1
  33. data/lib/yard/registry_resolver.rb +10 -24
  34. data/lib/yard/registry_store.rb +1 -1
  35. data/lib/yard/serializers/yardoc_serializer.rb +1 -1
  36. data/lib/yard/server/commands/base.rb +2 -2
  37. data/lib/yard/templates/helpers/html_helper.rb +10 -3
  38. data/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +1 -1
  39. data/lib/yard/templates/helpers/markup/rdoc_markup.rb +5 -4
  40. data/lib/yard/templates/section.rb +1 -3
  41. data/lib/yard/version.rb +1 -1
  42. data/samus.json +15 -46
  43. data/tasks/update_error_map.rake +53 -0
  44. data/templates/default/fulldoc/html/css/style.css +1 -0
  45. data/templates/default/fulldoc/html/js/jquery.js +4 -2
  46. data/yard.gemspec +1 -2
  47. metadata +9 -206
  48. data/spec/cli/command_parser_spec.rb +0 -43
  49. data/spec/cli/command_spec.rb +0 -36
  50. data/spec/cli/config_spec.rb +0 -148
  51. data/spec/cli/diff_spec.rb +0 -254
  52. data/spec/cli/display_spec.rb +0 -30
  53. data/spec/cli/gems_spec.rb +0 -81
  54. data/spec/cli/graph_spec.rb +0 -18
  55. data/spec/cli/help_spec.rb +0 -22
  56. data/spec/cli/i18n_spec.rb +0 -107
  57. data/spec/cli/list_spec.rb +0 -8
  58. data/spec/cli/markup_types_spec.rb +0 -22
  59. data/spec/cli/server_spec.rb +0 -324
  60. data/spec/cli/stats_spec.rb +0 -96
  61. data/spec/cli/yard_on_yard_spec.rb +0 -38
  62. data/spec/cli/yardoc_spec.rb +0 -896
  63. data/spec/cli/yri_spec.rb +0 -101
  64. data/spec/code_objects/base_spec.rb +0 -485
  65. data/spec/code_objects/class_object_spec.rb +0 -226
  66. data/spec/code_objects/code_object_list_spec.rb +0 -36
  67. data/spec/code_objects/constants_spec.rb +0 -116
  68. data/spec/code_objects/extra_file_object_spec.rb +0 -161
  69. data/spec/code_objects/macro_object_spec.rb +0 -150
  70. data/spec/code_objects/method_object_spec.rb +0 -184
  71. data/spec/code_objects/module_object_spec.rb +0 -142
  72. data/spec/code_objects/namespace_object_spec.rb +0 -171
  73. data/spec/code_objects/proxy_spec.rb +0 -147
  74. data/spec/code_objects/spec_helper.rb +0 -3
  75. data/spec/config_spec.rb +0 -171
  76. data/spec/core_ext/array_spec.rb +0 -13
  77. data/spec/core_ext/file_spec.rb +0 -72
  78. data/spec/core_ext/hash_spec.rb +0 -14
  79. data/spec/core_ext/insertion_spec.rb +0 -37
  80. data/spec/core_ext/module_spec.rb +0 -9
  81. data/spec/core_ext/string_spec.rb +0 -42
  82. data/spec/core_ext/symbol_hash_spec.rb +0 -89
  83. data/spec/docstring_parser_spec.rb +0 -280
  84. data/spec/docstring_spec.rb +0 -373
  85. data/spec/handlers/alias_handler_spec.rb +0 -82
  86. data/spec/handlers/attribute_handler_spec.rb +0 -96
  87. data/spec/handlers/base_spec.rb +0 -216
  88. data/spec/handlers/c/alias_handler_spec.rb +0 -34
  89. data/spec/handlers/c/attribute_handler_spec.rb +0 -41
  90. data/spec/handlers/c/class_handler_spec.rb +0 -78
  91. data/spec/handlers/c/constant_handler_spec.rb +0 -71
  92. data/spec/handlers/c/init_handler_spec.rb +0 -48
  93. data/spec/handlers/c/method_handler_spec.rb +0 -327
  94. data/spec/handlers/c/mixin_handler_spec.rb +0 -44
  95. data/spec/handlers/c/module_handler_spec.rb +0 -71
  96. data/spec/handlers/c/override_comment_handler_spec.rb +0 -47
  97. data/spec/handlers/c/path_handler_spec.rb +0 -36
  98. data/spec/handlers/c/spec_helper.rb +0 -23
  99. data/spec/handlers/c/struct_handler_spec.rb +0 -16
  100. data/spec/handlers/class_condition_handler_spec.rb +0 -87
  101. data/spec/handlers/class_handler_spec.rb +0 -247
  102. data/spec/handlers/class_method_handler_shared_examples.rb +0 -133
  103. data/spec/handlers/class_variable_handler_spec.rb +0 -12
  104. data/spec/handlers/constant_handler_spec.rb +0 -112
  105. data/spec/handlers/decorator_handler_methods_spec.rb +0 -393
  106. data/spec/handlers/dsl_handler_spec.rb +0 -226
  107. data/spec/handlers/examples/alias_handler_001.rb.txt +0 -46
  108. data/spec/handlers/examples/attribute_handler_001.rb.txt +0 -32
  109. data/spec/handlers/examples/class_condition_handler_001.rb.txt +0 -69
  110. data/spec/handlers/examples/class_handler_001.rb.txt +0 -120
  111. data/spec/handlers/examples/class_variable_handler_001.rb.txt +0 -10
  112. data/spec/handlers/examples/constant_handler_001.rb.txt +0 -35
  113. data/spec/handlers/examples/dsl_handler_001.rb.txt +0 -156
  114. data/spec/handlers/examples/exception_handler_001.rb.txt +0 -59
  115. data/spec/handlers/examples/extend_handler_001.rb.txt +0 -19
  116. data/spec/handlers/examples/method_condition_handler_001.rb.txt +0 -10
  117. data/spec/handlers/examples/method_handler_001.rb.txt +0 -128
  118. data/spec/handlers/examples/mixin_handler_001.rb.txt +0 -40
  119. data/spec/handlers/examples/module_handler_001.rb.txt +0 -29
  120. data/spec/handlers/examples/private_constant_handler_001.rb.txt +0 -8
  121. data/spec/handlers/examples/process_handler_001.rb.txt +0 -11
  122. data/spec/handlers/examples/visibility_handler_001.rb.txt +0 -36
  123. data/spec/handlers/examples/yield_handler_001.rb.txt +0 -54
  124. data/spec/handlers/exception_handler_spec.rb +0 -49
  125. data/spec/handlers/extend_handler_spec.rb +0 -28
  126. data/spec/handlers/legacy_base_spec.rb +0 -128
  127. data/spec/handlers/method_condition_handler_spec.rb +0 -15
  128. data/spec/handlers/method_handler_spec.rb +0 -214
  129. data/spec/handlers/mixin_handler_spec.rb +0 -60
  130. data/spec/handlers/module_function_handler_spec.rb +0 -106
  131. data/spec/handlers/module_handler_spec.rb +0 -35
  132. data/spec/handlers/private_class_method_handler_spec.rb +0 -11
  133. data/spec/handlers/private_constant_handler_spec.rb +0 -25
  134. data/spec/handlers/processor_spec.rb +0 -35
  135. data/spec/handlers/public_class_method_handler_spec.rb +0 -11
  136. data/spec/handlers/ruby/base_spec.rb +0 -95
  137. data/spec/handlers/ruby/legacy/base_spec.rb +0 -84
  138. data/spec/handlers/spec_helper.rb +0 -33
  139. data/spec/handlers/visibility_handler_spec.rb +0 -44
  140. data/spec/handlers/yield_handler_spec.rb +0 -52
  141. data/spec/i18n/locale_spec.rb +0 -81
  142. data/spec/i18n/message_spec.rb +0 -52
  143. data/spec/i18n/messages_spec.rb +0 -67
  144. data/spec/i18n/pot_generator_spec.rb +0 -295
  145. data/spec/i18n/text_spec.rb +0 -184
  146. data/spec/logging_spec.rb +0 -44
  147. data/spec/options_spec.rb +0 -171
  148. data/spec/parser/base_spec.rb +0 -24
  149. data/spec/parser/c_parser_spec.rb +0 -236
  150. data/spec/parser/examples/array.c.txt +0 -6267
  151. data/spec/parser/examples/example1.rb.txt +0 -8
  152. data/spec/parser/examples/extrafile.c.txt +0 -8
  153. data/spec/parser/examples/file.c.txt +0 -28
  154. data/spec/parser/examples/multifile.c.txt +0 -22
  155. data/spec/parser/examples/namespace.cpp.txt +0 -68
  156. data/spec/parser/examples/override.c.txt +0 -424
  157. data/spec/parser/examples/parse_in_order_001.rb.txt +0 -2
  158. data/spec/parser/examples/parse_in_order_002.rb.txt +0 -2
  159. data/spec/parser/examples/tag_handler_001.rb.txt +0 -8
  160. data/spec/parser/ruby/ast_node_spec.rb +0 -33
  161. data/spec/parser/ruby/legacy/statement_list_spec.rb +0 -299
  162. data/spec/parser/ruby/legacy/token_list_spec.rb +0 -79
  163. data/spec/parser/ruby/ruby_parser_spec.rb +0 -508
  164. data/spec/parser/ruby/token_resolver_spec.rb +0 -165
  165. data/spec/parser/source_parser_spec.rb +0 -727
  166. data/spec/parser/tag_parsing_spec.rb +0 -17
  167. data/spec/rake/yardoc_task_spec.rb +0 -118
  168. data/spec/registry_spec.rb +0 -463
  169. data/spec/registry_store_spec.rb +0 -327
  170. data/spec/rubygems/doc_manager_spec.rb +0 -112
  171. data/spec/serializers/data/serialized_yardoc/checksums +0 -1
  172. data/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  173. data/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  174. data/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  175. data/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  176. data/spec/serializers/data/serialized_yardoc/proxy_types +0 -2
  177. data/spec/serializers/file_system_serializer_spec.rb +0 -145
  178. data/spec/serializers/spec_helper.rb +0 -2
  179. data/spec/serializers/yardoc_serializer_spec.rb +0 -78
  180. data/spec/server/adapter_spec.rb +0 -39
  181. data/spec/server/commands/base_spec.rb +0 -91
  182. data/spec/server/commands/library_command_spec.rb +0 -39
  183. data/spec/server/doc_server_helper_spec.rb +0 -72
  184. data/spec/server/doc_server_serializer_spec.rb +0 -60
  185. data/spec/server/rack_adapter_spec.rb +0 -21
  186. data/spec/server/router_spec.rb +0 -123
  187. data/spec/server/spec_helper.rb +0 -22
  188. data/spec/server/static_caching_spec.rb +0 -47
  189. data/spec/server/webrick_servlet_spec.rb +0 -20
  190. data/spec/server_spec.rb +0 -19
  191. data/spec/spec_helper.rb +0 -212
  192. data/spec/tags/default_factory_spec.rb +0 -168
  193. data/spec/tags/default_tag_spec.rb +0 -11
  194. data/spec/tags/directives_spec.rb +0 -463
  195. data/spec/tags/library_spec.rb +0 -48
  196. data/spec/tags/overload_tag_spec.rb +0 -53
  197. data/spec/tags/ref_tag_list_spec.rb +0 -53
  198. data/spec/tags/types_explainer_spec.rb +0 -203
  199. data/spec/templates/class_spec.rb +0 -45
  200. data/spec/templates/constant_spec.rb +0 -41
  201. data/spec/templates/engine_spec.rb +0 -131
  202. data/spec/templates/examples/class001.html +0 -308
  203. data/spec/templates/examples/class001.txt +0 -36
  204. data/spec/templates/examples/class002.html +0 -39
  205. data/spec/templates/examples/constant001.txt +0 -25
  206. data/spec/templates/examples/constant002.txt +0 -7
  207. data/spec/templates/examples/constant003.txt +0 -11
  208. data/spec/templates/examples/method001.html +0 -137
  209. data/spec/templates/examples/method001.txt +0 -35
  210. data/spec/templates/examples/method002.html +0 -91
  211. data/spec/templates/examples/method002.txt +0 -20
  212. data/spec/templates/examples/method003.html +0 -165
  213. data/spec/templates/examples/method003.txt +0 -45
  214. data/spec/templates/examples/method004.html +0 -48
  215. data/spec/templates/examples/method004.txt +0 -10
  216. data/spec/templates/examples/method005.html +0 -105
  217. data/spec/templates/examples/method005.txt +0 -33
  218. data/spec/templates/examples/method006.html +0 -108
  219. data/spec/templates/examples/method006.txt +0 -20
  220. data/spec/templates/examples/module001.dot +0 -33
  221. data/spec/templates/examples/module001.html +0 -833
  222. data/spec/templates/examples/module001.txt +0 -33
  223. data/spec/templates/examples/module002.html +0 -341
  224. data/spec/templates/examples/module003.html +0 -202
  225. data/spec/templates/examples/module004.html +0 -394
  226. data/spec/templates/examples/module005.html +0 -82
  227. data/spec/templates/examples/tag001.txt +0 -82
  228. data/spec/templates/helpers/base_helper_spec.rb +0 -171
  229. data/spec/templates/helpers/html_helper_spec.rb +0 -687
  230. data/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +0 -65
  231. data/spec/templates/helpers/markup/rdoc_markup_spec.rb +0 -84
  232. data/spec/templates/helpers/markup_helper_spec.rb +0 -136
  233. data/spec/templates/helpers/method_helper_spec.rb +0 -107
  234. data/spec/templates/helpers/module_helper_spec.rb +0 -35
  235. data/spec/templates/helpers/shared_signature_examples.rb +0 -126
  236. data/spec/templates/helpers/text_helper_spec.rb +0 -65
  237. data/spec/templates/markup_processor_integrations/asciidoctor_spec.rb +0 -60
  238. data/spec/templates/markup_processor_integrations/integration_spec_helper.rb +0 -46
  239. data/spec/templates/markup_processor_integrations/rdoc_markdown_spec.rb +0 -59
  240. data/spec/templates/markup_processor_integrations/rdoc_spec.rb +0 -39
  241. data/spec/templates/markup_processor_integrations/redcarpet_spec.rb +0 -59
  242. data/spec/templates/markup_processor_integrations/redcloth_spec.rb +0 -48
  243. data/spec/templates/method_spec.rb +0 -118
  244. data/spec/templates/module_spec.rb +0 -203
  245. data/spec/templates/onefile_spec.rb +0 -66
  246. data/spec/templates/section_spec.rb +0 -144
  247. data/spec/templates/spec_helper.rb +0 -76
  248. data/spec/templates/tag_spec.rb +0 -52
  249. data/spec/templates/template_spec.rb +0 -410
  250. data/spec/verifier_spec.rb +0 -106
@@ -1,131 +0,0 @@
1
- # frozen_string_literal: true
2
- require File.dirname(__FILE__) + '/spec_helper'
3
-
4
- RSpec.describe YARD::Templates::Engine do
5
- before { @paths = Engine.template_paths }
6
- after { Engine.template_paths = @paths }
7
-
8
- describe ".register_template_path" do
9
- it "registers a String path" do
10
- Engine.register_template_path('.')
11
- expect(Engine.template_paths.pop).to eq '.'
12
- end
13
-
14
- it "does not duplicate paths" do
15
- Engine.template_paths = []
16
- Engine.register_template_path('foo')
17
- Engine.register_template_path('foo')
18
- expect(Engine.template_paths).to eq ['foo']
19
- end
20
- end
21
-
22
- describe ".template!" do
23
- it "creates a module including Template" do
24
- mod = Engine.template!('path/to/template')
25
- expect(mod).to include(Template)
26
- expect(mod.full_path.to_s).to eq 'path/to/template'
27
- end
28
-
29
- it "creates a module including Template with full_path" do
30
- mod = Engine.template!('path/to/template2', '/full/path/to/template2')
31
- expect(mod).to include(Template)
32
- expect(mod.full_path.to_s).to eq '/full/path/to/template2'
33
- end
34
- end
35
-
36
- describe ".template" do
37
- it "raises an error if the template is not found" do
38
- expect { Engine.template(:a, :b, :c) }.to raise_error(ArgumentError)
39
- end
40
-
41
- it "creates a module including Template" do
42
- mock = double(:template)
43
- expect(Engine).to receive(:find_template_paths).with(nil, 'template/name').and_return(['/full/path/template/name'])
44
- expect(Engine).to receive(:template!).with('template/name', ['/full/path/template/name']).and_return(mock)
45
- expect(Engine.template('template/name')).to eq mock
46
- end
47
-
48
- it "creates a Template from a relative Template path" do
49
- expect(Engine).to receive(:template_paths).and_return([])
50
- expect(File).to receive(:directory?).with("/full/path/template/notname").and_return(true)
51
- start_template = double(:start_template,
52
- :full_path => '/full/path/template/name',
53
- :full_paths => ['/full/path/template/name'])
54
- expect(start_template).to receive(:is_a?).with(Template).and_return(true)
55
- mod = Engine.template(start_template, '..', 'notname')
56
- expect(mod).to include(Template)
57
- expect(mod.full_path.to_s).to eq "/full/path/template/notname"
58
- end
59
-
60
- it "creates a Template including other matching templates in path" do
61
- paths = ['/full/path/template/name', '/full/path2/template/name']
62
- expect(Engine).to receive(:find_template_paths).with(nil, 'template').at_least(1).times.and_return([])
63
- expect(Engine).to receive(:find_template_paths).with(nil, 'template/name').and_return(paths)
64
- ancestors = Engine.template('template/name').ancestors.map(&:class_name)
65
- expect(ancestors).to include("Template__full_path2_template_name")
66
- end
67
-
68
- it "includes parent directories before other template paths" do
69
- paths = ['/full/path/template/name', '/full/path2/template/name']
70
- expect(Engine).to receive(:find_template_paths).with(nil, 'template/name').and_return(paths)
71
- ancestors = Engine.template('template/name').ancestors.map(&:class_name)
72
- expect(ancestors[0, 4]).to eq ["Template__full_path_template_name", "Template__full_path_template",
73
- "Template__full_path2_template_name", "Template__full_path2_template"]
74
- end
75
- end
76
-
77
- describe ".generate" do
78
- it "generates with fulldoc template" do
79
- mod = double(:template)
80
- options = TemplateOptions.new
81
- options.reset_defaults
82
- options.objects = [:a, :b, :c]
83
- options.object = Registry.root
84
- expect(mod).to receive(:run).with(options)
85
- expect(Engine).to receive(:template).with(:default, :fulldoc, :text).and_return(mod)
86
- Engine.generate([:a, :b, :c])
87
- end
88
- end
89
-
90
- describe ".render" do
91
- def loads_template(*args)
92
- expect(Engine).to receive(:template).with(*args).and_return(@template)
93
- end
94
-
95
- before(:all) do
96
- @object = CodeObjects::MethodObject.new(:root, :method)
97
- end
98
-
99
- before do
100
- @options = TemplateOptions.new
101
- @options.reset_defaults
102
- @options.object = @object
103
- @options.type = @object.type
104
- @template = double(:template, :include => nil)
105
- expect(@template).to receive(:run).with(@options)
106
- end
107
-
108
- it "accepts method call with no parameters" do
109
- loads_template(:default, :method, :text)
110
- @object.format
111
- end
112
-
113
- it "allows template key to be changed" do
114
- loads_template(:javadoc, :method, :text)
115
- @options.template = :javadoc
116
- @object.format(:template => :javadoc)
117
- end
118
-
119
- it "allows type key to be changed" do
120
- loads_template(:default, :fulldoc, :text)
121
- @options.type = :fulldoc
122
- @object.format(:type => :fulldoc)
123
- end
124
-
125
- it "allows format key to be changed" do
126
- loads_template(:default, :method, :html)
127
- @options.format = :html
128
- @object.format(:format => :html)
129
- end
130
- end
131
- end
@@ -1,308 +0,0 @@
1
- <h1>Class: A
2
- <span class="abstract note title">Abstract</span>
3
-
4
-
5
- </h1>
6
- <div class="box_info">
7
-
8
- <dl>
9
- <dt>Inherits:</dt>
10
- <dd>
11
- <span class="inheritName">B</span>
12
-
13
- <ul class="fullTree">
14
- <li>Object</li>
15
-
16
- <li class="next">B</li>
17
-
18
- <li class="next">A</li>
19
-
20
- </ul>
21
- <a href="#" class="inheritanceTree">show all</a>
22
-
23
- </dd>
24
- </dl>
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
- <dl>
37
- <dt>Defined in:</dt>
38
- <dd>(stdin)</dd>
39
- </dl>
40
-
41
- </div>
42
-
43
- <h2>Overview</h2><div class="docstring">
44
- <div class="discussion">
45
- <div class="note abstract">
46
- <strong>This class is abstract.</strong>
47
- <div class='inline'>override this class</div>
48
- </div>
49
- Comments
50
-
51
- </div>
52
- </div>
53
- <div class="tags">
54
-
55
-
56
- <p class="tag_title">See Also:</p>
57
- <ul class="see">
58
-
59
- <li>A</li>
60
-
61
- <li><a href="http://example.com" target="_parent" title="Example">Example</a></li>
62
-
63
- </ul>
64
- <p class="tag_title">Author:</p>
65
- <ul class="author">
66
-
67
- <li>
68
-
69
-
70
-
71
-
72
-
73
- <div class='inline'>Test</div>
74
-
75
- </li>
76
-
77
- </ul>
78
- <p class="tag_title">Version:</p>
79
- <ul class="version">
80
-
81
- <li>
82
-
83
-
84
-
85
-
86
-
87
- <div class='inline'>1.0</div>
88
-
89
- </li>
90
-
91
- </ul>
92
-
93
- </div><div id="subclasses">
94
- <h2>Direct Known Subclasses</h2>
95
- <p class="children">C</p>
96
- </div>
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
- <h2>
106
- Instance Method Summary
107
- <small><a href="#" class="summary_toggle">collapse</a></small>
108
- </h2>
109
-
110
- <ul class="summary">
111
-
112
- <li class="public deprecated">
113
- <span class="summary_signature">
114
-
115
- <a title="#a (instance method)">#<strong>a</strong> </a>
116
-
117
-
118
-
119
- </span>
120
-
121
-
122
-
123
-
124
-
125
- <span class="deprecated note title">deprecated</span>
126
-
127
-
128
-
129
- <span class="summary_desc"><strong>Deprecated.</strong> <div class='inline'></div></span>
130
-
131
- </li>
132
-
133
-
134
- <li class="public ">
135
- <span class="summary_signature">
136
-
137
- <a title="#initialize (instance method)">#<strong>initialize</strong>(test) &#x21d2; A </a>
138
-
139
-
140
-
141
- </span>
142
-
143
-
144
- <span class="note title constructor">constructor</span>
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
- <span class="summary_desc"><div class='inline'>constructor method!.</div></span>
154
-
155
- </li>
156
-
157
-
158
- <li class="public ">
159
- <span class="summary_signature">
160
-
161
- <a title="#method_missing (instance method)">#<strong>method_missing</strong>(*args) </a>
162
-
163
-
164
-
165
- </span>
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
- <span class="summary_desc"><div class='inline'>HI.</div></span>
176
-
177
- </li>
178
-
179
-
180
- </ul>
181
-
182
-
183
-
184
- <div id="constructor_details" class="method_details_list">
185
- <h2>Constructor Details</h2>
186
-
187
- <div class="method_details first">
188
- <h3 class="signature first" id="initialize-instance_method">
189
-
190
- #<strong>initialize</strong>(test) &#x21d2; <tt>A</tt>
191
-
192
-
193
-
194
-
195
-
196
- </h3><div class="docstring">
197
- <div class="discussion">
198
- constructor method!
199
-
200
- </div>
201
- </div>
202
- <div class="tags">
203
-
204
-
205
- </div><table class="source_code">
206
- <tr>
207
- <td>
208
- <pre class="lines">
209
-
210
-
211
- 15</pre>
212
- </td>
213
- <td>
214
- <pre class="code"><span class="info file"># File '(stdin)', line 15</span>
215
-
216
- def initialize(test) end</pre>
217
- </td>
218
- </tr>
219
- </table>
220
- </div>
221
-
222
- </div>
223
- <div id="method_missing_details" class="method_details_list">
224
- <h2>Dynamic Method Handling</h2>
225
- <p class="notice this">
226
- This class handles dynamic methods through the <tt>method_missing</tt> method
227
-
228
- </p>
229
-
230
- <div class="method_details first">
231
- <h3 class="signature first" id="method_missing-instance_method">
232
-
233
- #<strong>method_missing</strong>(*args)
234
-
235
-
236
-
237
-
238
-
239
- </h3><div class="docstring">
240
- <div class="discussion">
241
- HI
242
-
243
- </div>
244
- </div>
245
- <div class="tags">
246
-
247
-
248
- </div><table class="source_code">
249
- <tr>
250
- <td>
251
- <pre class="lines">
252
-
253
-
254
- 10</pre>
255
- </td>
256
- <td>
257
- <pre class="code"><span class="info file"># File '(stdin)', line 10</span>
258
-
259
- def method_missing(*args) end</pre>
260
- </td>
261
- </tr>
262
- </table>
263
- </div>
264
-
265
- </div>
266
-
267
-
268
- <div id="instance_method_details" class="method_details_list">
269
- <h2>Instance Method Details</h2>
270
-
271
-
272
- <div class="method_details first">
273
- <h3 class="signature first" id="a-instance_method">
274
-
275
- #<strong>a</strong>
276
-
277
-
278
-
279
-
280
-
281
- </h3><div class="docstring">
282
- <div class="discussion">
283
- <div class="note deprecated"><strong>Deprecated.</strong> <div class='inline'></div></div>
284
-
285
-
286
- </div>
287
- </div>
288
- <div class="tags">
289
-
290
-
291
- </div><table class="source_code">
292
- <tr>
293
- <td>
294
- <pre class="lines">
295
-
296
-
297
- 12</pre>
298
- </td>
299
- <td>
300
- <pre class="code"><span class="info file"># File '(stdin)', line 12</span>
301
-
302
- def a; end</pre>
303
- </td>
304
- </tr>
305
- </table>
306
- </div>
307
-
308
- </div>
@@ -1,36 +0,0 @@
1
- ----------------------------------------------------------- Class: A < B
2
-
3
- Abstract. override this class
4
-
5
- Comments
6
-
7
- See Also:
8
- ---------
9
-
10
- - A
11
- - http://example.com - Example
12
-
13
- Author:
14
- -------
15
-
16
- Test
17
-
18
- Version:
19
- --------
20
-
21
- 1.0
22
-
23
-
24
- ------------------------------------------------------------------------
25
-
26
- Direct Known Subclasses:
27
- ------------------------
28
-
29
- C
30
-
31
- Instance methods:
32
- -----------------
33
-
34
- a, initialize, method_missing
35
-
36
-