kinetic_sdk 5.0.19 → 5.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Code-of-Conduct.md +10 -10
- data/gems/mime-types-3.4.1/Contributing.md +132 -0
- data/gems/mime-types-3.4.1/History.md +269 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Licence.md +3 -3
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Manifest.txt +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/README.rdoc +1 -0
- data/gems/mime-types-3.4.1/Rakefile +270 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type/columnar.rb +3 -3
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type.rb +141 -94
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/_columnar.rb +20 -19
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/cache.rb +8 -8
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/columnar.rb +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/container.rb +14 -14
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/deprecations.rb +15 -11
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/full.rb +2 -2
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/loader.rb +28 -15
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/logger.rb +3 -5
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/registry.rb +7 -7
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types.rb +18 -16
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime-types.rb +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/bad-fixtures/malformed +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/json.json +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/old-data +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/yaml.yaml +0 -0
- data/gems/mime-types-3.4.1/test/minitest_helper.rb +11 -0
- data/gems/mime-types-3.4.1/test/test_mime_type.rb +621 -0
- data/gems/mime-types-3.4.1/test/test_mime_types.rb +169 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +118 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_class.rb +159 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +49 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +32 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Code-of-Conduct.md +12 -12
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Contributing.md +37 -20
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/History.md +46 -12
- data/gems/{websocket-driver-0.6.5-java/LICENSE.md → mime-types-data-3.2022.0105/Licence.md} +7 -5
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Manifest.txt +3 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/README.md +11 -1
- data/gems/mime-types-data-3.2022.0105/Rakefile +155 -0
- data/gems/mime-types-data-3.2022.0105/data/content_type_mime.db +878 -0
- data/gems/mime-types-data-3.2022.0105/data/ext_mime.db +1198 -0
- data/gems/mime-types-data-3.2022.0105/data/mime-types.json +1 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.content_type.column +69 -1
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.docs.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.encoding.column +68 -0
- data/gems/mime-types-data-3.2022.0105/data/mime.flags.column +2383 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.friendly.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.pext.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.use_instead.column +71 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.xrefs.column +98 -30
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime/types/data.rb +2 -2
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime-types-data.rb +1 -1
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/application.yaml +390 -24
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/audio.yaml +2 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/chemical.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/conference.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/drawing.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/font.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/image.yaml +4 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/message.yaml +9 -4
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/model.yaml +59 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/multipart.yaml +2 -2
- data/gems/mime-types-data-3.2022.0105/types/provisional-standard-types.yaml +145 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/text.yaml +24 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/video.yaml +27 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/world.yaml +0 -0
- data/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
- data/gems/rake-13.0.1/Gemfile +10 -0
- data/gems/rake-13.0.1/History.rdoc +2368 -0
- data/gems/{parallel-1.12.1/MIT-LICENSE.txt → rake-13.0.1/MIT-LICENSE} +2 -1
- data/gems/rake-13.0.1/README.rdoc +155 -0
- data/gems/rake-13.0.1/Rakefile +41 -0
- data/gems/rake-13.0.1/bin/bundle +105 -0
- data/gems/rake-13.0.1/bin/console +7 -0
- data/gems/rake-13.0.1/bin/rake +29 -0
- data/gems/rake-13.0.1/bin/rdoc +29 -0
- data/gems/rake-13.0.1/bin/rubocop +29 -0
- data/gems/rake-13.0.1/bin/setup +6 -0
- data/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
- data/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
- data/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
- data/gems/rake-13.0.1/doc/example/a.c +6 -0
- data/gems/rake-13.0.1/doc/example/b.c +6 -0
- data/gems/rake-13.0.1/doc/example/main.c +11 -0
- data/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
- data/gems/rake-13.0.1/doc/jamis.rb +592 -0
- data/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
- data/gems/rake-13.0.1/doc/rake.1 +156 -0
- data/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
- data/gems/rake-13.0.1/doc/rational.rdoc +151 -0
- data/gems/rake-13.0.1/exe/rake +27 -0
- data/gems/rake-13.0.1/lib/rake/application.rb +824 -0
- data/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
- data/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
- data/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
- data/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
- data/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
- data/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
- data/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
- data/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
- data/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
- data/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
- data/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
- data/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
- data/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
- data/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
- data/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
- data/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
- data/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
- data/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
- data/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
- data/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
- data/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
- data/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
- data/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
- data/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
- data/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
- data/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
- data/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
- data/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
- data/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
- data/gems/rake-13.0.1/lib/rake/task.rb +434 -0
- data/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
- data/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
- data/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
- data/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
- data/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
- data/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
- data/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
- data/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
- data/gems/rake-13.0.1/lib/rake/version.rb +10 -0
- data/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
- data/gems/rake-13.0.1/lib/rake.rb +71 -0
- data/gems/rake-13.0.1/rake.gemspec +43 -0
- data/gems/yard-0.9.25/CHANGELOG.md +804 -0
- data/gems/yard-0.9.25/CODE_OF_CONDUCT.md +15 -0
- data/gems/yard-0.9.25/CONTRIBUTING.md +140 -0
- data/gems/yard-0.9.25/Dockerfile.samus +28 -0
- data/gems/yard-0.9.25/Gemfile +32 -0
- data/gems/yard-0.9.25/LEGAL +66 -0
- data/gems/yard-0.9.25/LICENSE +22 -0
- data/gems/yard-0.9.25/README.md +325 -0
- data/gems/yard-0.9.25/Rakefile +39 -0
- data/gems/yard-0.9.25/SECURITY.md +26 -0
- data/gems/yard-0.9.25/benchmarks/builtins_vs_eval.rb +24 -0
- data/gems/yard-0.9.25/benchmarks/concat_vs_join.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/erb_vs_erubis.rb +54 -0
- data/gems/yard-0.9.25/benchmarks/format_args.rb +47 -0
- data/gems/yard-0.9.25/benchmarks/generation.rb +38 -0
- data/gems/yard-0.9.25/benchmarks/marshal_vs_dbm.rb +64 -0
- data/gems/yard-0.9.25/benchmarks/parsing.rb +46 -0
- data/gems/yard-0.9.25/benchmarks/pathname_vs_string.rb +51 -0
- data/gems/yard-0.9.25/benchmarks/rdoc_vs_yardoc.rb +11 -0
- data/gems/yard-0.9.25/benchmarks/registry_store_types.rb +49 -0
- data/gems/yard-0.9.25/benchmarks/ri_vs_yri.rb +19 -0
- data/gems/yard-0.9.25/benchmarks/ripper_parser.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/splat_vs_flatten.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/template_erb.rb +23 -0
- data/gems/yard-0.9.25/benchmarks/template_format.rb +7 -0
- data/gems/yard-0.9.25/benchmarks/template_profile.rb +18 -0
- data/gems/yard-0.9.25/benchmarks/yri_cache.rb +20 -0
- data/gems/yard-0.9.25/bin/yard +13 -0
- data/gems/yard-0.9.25/bin/yardoc +13 -0
- data/gems/yard-0.9.25/bin/yri +13 -0
- data/gems/yard-0.9.25/docs/CodeObjects.md +115 -0
- data/gems/yard-0.9.25/docs/GettingStarted.md +679 -0
- data/gems/yard-0.9.25/docs/Handlers.md +152 -0
- data/gems/yard-0.9.25/docs/Overview.md +61 -0
- data/gems/yard-0.9.25/docs/Parser.md +191 -0
- data/gems/yard-0.9.25/docs/Tags.md +283 -0
- data/gems/yard-0.9.25/docs/TagsArch.md +123 -0
- data/gems/yard-0.9.25/docs/Templates.md +496 -0
- data/gems/yard-0.9.25/docs/WhatsNew.md +1245 -0
- data/gems/yard-0.9.25/docs/images/code-objects-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/handlers-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/overview-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/parser-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/tags-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/full_list_tag.erb +9 -0
- data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/setup.rb +6 -0
- data/gems/yard-0.9.25/docs/templates/default/layout/html/setup.rb +9 -0
- data/gems/yard-0.9.25/docs/templates/default/layout/html/tag_list.erb +11 -0
- data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/list.erb +18 -0
- data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/setup.rb +26 -0
- data/gems/yard-0.9.25/docs/templates/plugin.rb +70 -0
- data/gems/yard-0.9.25/lib/rubygems_plugin.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/autoload.rb +308 -0
- data/gems/yard-0.9.25/lib/yard/cli/command.rb +85 -0
- data/gems/yard-0.9.25/lib/yard/cli/command_parser.rb +93 -0
- data/gems/yard-0.9.25/lib/yard/cli/config.rb +198 -0
- data/gems/yard-0.9.25/lib/yard/cli/diff.rb +273 -0
- data/gems/yard-0.9.25/lib/yard/cli/display.rb +69 -0
- data/gems/yard-0.9.25/lib/yard/cli/gems.rb +84 -0
- data/gems/yard-0.9.25/lib/yard/cli/graph.rb +125 -0
- data/gems/yard-0.9.25/lib/yard/cli/help.rb +20 -0
- data/gems/yard-0.9.25/lib/yard/cli/i18n.rb +70 -0
- data/gems/yard-0.9.25/lib/yard/cli/list.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/cli/markup_types.rb +32 -0
- data/gems/yard-0.9.25/lib/yard/cli/server.rb +266 -0
- data/gems/yard-0.9.25/lib/yard/cli/stats.rb +231 -0
- data/gems/yard-0.9.25/lib/yard/cli/yardoc.rb +789 -0
- data/gems/yard-0.9.25/lib/yard/cli/yardopts_command.rb +110 -0
- data/gems/yard-0.9.25/lib/yard/cli/yri.rb +215 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/base.rb +622 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/class_object.rb +146 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/class_variable_object.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/constant_object.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb +24 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/extra_file_object.rb +134 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/macro_object.rb +172 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/method_object.rb +196 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/module_object.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/namespace_mapper.rb +141 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/namespace_object.rb +200 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/proxy.rb +245 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/root_object.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/config.rb +270 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/array.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/file.rb +69 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/hash.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/insertion.rb +63 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/module.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/string.rb +68 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/symbol_hash.rb +75 -0
- data/gems/yard-0.9.25/lib/yard/docstring.rb +386 -0
- data/gems/yard-0.9.25/lib/yard/docstring_parser.rb +345 -0
- data/gems/yard-0.9.25/lib/yard/gem_index.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/globals.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/base.rb +595 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/alias_handler.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/attribute_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/base.rb +164 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/class_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/constant_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/handler_methods.rb +212 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb +20 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/method_handler.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/mixin_handler.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/module_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/override_comment_handler.rb +31 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/path_handler.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/struct_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/symbol_handler.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/handlers/common/method_handler.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/handlers/processor.rb +200 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/alias_handler.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/attribute_handler.rb +87 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/base.rb +165 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_condition_handler.rb +92 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_handler.rb +119 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_variable_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/comment_handler.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/constant_handler.rb +55 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/decorator_handler_methods.rb +123 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler_methods.rb +96 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/exception_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/extend_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/alias_handler.rb +37 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/attribute_handler.rb +65 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/base.rb +245 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_handler.rb +113 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/comment_handler.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/constant_handler.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/dsl_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/exception_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/extend_handler.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/method_handler.rb +90 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_function_handler.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_handler.rb +12 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_class_method_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/visibility_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/yield_handler.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_condition_handler.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_handler.rb +104 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/mixin_handler.rb +49 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_function_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_handler.rb +12 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_class_method_handler.rb +14 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_constant_handler.rb +43 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/public_class_method_handler.rb +14 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/struct_handler_methods.rb +143 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/visibility_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/yield_handler.rb +31 -0
- data/gems/yard-0.9.25/lib/yard/i18n/locale.rb +67 -0
- data/gems/yard-0.9.25/lib/yard/i18n/message.rb +57 -0
- data/gems/yard-0.9.25/lib/yard/i18n/messages.rb +56 -0
- data/gems/yard-0.9.25/lib/yard/i18n/po_parser.rb +61 -0
- data/gems/yard-0.9.25/lib/yard/i18n/pot_generator.rb +290 -0
- data/gems/yard-0.9.25/lib/yard/i18n/text.rb +173 -0
- data/gems/yard-0.9.25/lib/yard/logging.rb +205 -0
- data/gems/yard-0.9.25/lib/yard/options.rb +217 -0
- data/gems/yard-0.9.25/lib/yard/parser/base.rb +57 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/c_parser.rb +235 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/comment_parser.rb +134 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/statement.rb +66 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/ast_node.rb +551 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/irb/slex.rb +276 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_lex.rb +1345 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_parser.rb +32 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement.rb +68 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement_list.rb +394 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/token_list.rb +74 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/ruby_parser.rb +701 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/token_resolver.rb +158 -0
- data/gems/yard-0.9.25/lib/yard/parser/source_parser.rb +526 -0
- data/gems/yard-0.9.25/lib/yard/rake/yardoc_task.rb +81 -0
- data/gems/yard-0.9.25/lib/yard/registry.rb +439 -0
- data/gems/yard-0.9.25/lib/yard/registry_resolver.rb +217 -0
- data/gems/yard-0.9.25/lib/yard/registry_store.rb +342 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/LICENSE.txt +57 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/MIT.txt +20 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/gem.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/source_index.rb +365 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/doc_manager.rb +90 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/hook.rb +197 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/specification.rb +50 -0
- data/gems/yard-0.9.25/lib/yard/serializers/base.rb +83 -0
- data/gems/yard-0.9.25/lib/yard/serializers/file_system_serializer.rb +123 -0
- data/gems/yard-0.9.25/lib/yard/serializers/process_serializer.rb +24 -0
- data/gems/yard-0.9.25/lib/yard/serializers/stdout_serializer.rb +34 -0
- data/gems/yard-0.9.25/lib/yard/serializers/yardoc_serializer.rb +152 -0
- data/gems/yard-0.9.25/lib/yard/server/adapter.rb +100 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/base.rb +209 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/display_file_command.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/display_object_command.rb +65 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/frames_command.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/library_command.rb +187 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/library_index_command.rb +28 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/list_command.rb +25 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/root_request_command.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/search_command.rb +79 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/static_file_command.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/static_file_helpers.rb +61 -0
- data/gems/yard-0.9.25/lib/yard/server/doc_server_helper.rb +91 -0
- data/gems/yard-0.9.25/lib/yard/server/doc_server_serializer.rb +39 -0
- data/gems/yard-0.9.25/lib/yard/server/library_version.rb +277 -0
- data/gems/yard-0.9.25/lib/yard/server/rack_adapter.rb +89 -0
- data/gems/yard-0.9.25/lib/yard/server/router.rb +187 -0
- data/gems/yard-0.9.25/lib/yard/server/static_caching.rb +46 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/css/custom.css +127 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/breadcrumb.erb +37 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/script_setup.erb +7 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/setup.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/setup.rb +5 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/headers.erb +8 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +14 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/listing.erb +13 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/setup.rb +6 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/processing.erb +52 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/setup.rb +4 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/setup.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/server/webrick_adapter.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/server.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/default_factory.rb +191 -0
- data/gems/yard-0.9.25/lib/yard/tags/default_tag.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/directives.rb +616 -0
- data/gems/yard-0.9.25/lib/yard/tags/library.rb +633 -0
- data/gems/yard-0.9.25/lib/yard/tags/option_tag.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/overload_tag.rb +71 -0
- data/gems/yard-0.9.25/lib/yard/tags/ref_tag.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/tags/ref_tag_list.rb +28 -0
- data/gems/yard-0.9.25/lib/yard/tags/tag.rb +71 -0
- data/gems/yard-0.9.25/lib/yard/tags/tag_format_error.rb +7 -0
- data/gems/yard-0.9.25/lib/yard/tags/types_explainer.rb +162 -0
- data/gems/yard-0.9.25/lib/yard/templates/engine.rb +186 -0
- data/gems/yard-0.9.25/lib/yard/templates/erb_cache.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/base_helper.rb +215 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/filter_helper.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/html_helper.rb +670 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +78 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markdown.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markup.rb +110 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup_helper.rb +172 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/method_helper.rb +75 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/module_helper.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/text_helper.rb +112 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/uml_helper.rb +47 -0
- data/gems/yard-0.9.25/lib/yard/templates/section.rb +105 -0
- data/gems/yard-0.9.25/lib/yard/templates/template.rb +418 -0
- data/gems/yard-0.9.25/lib/yard/templates/template_options.rb +92 -0
- data/gems/yard-0.9.25/lib/yard/verifier.rb +151 -0
- data/gems/yard-0.9.25/lib/yard/version.rb +6 -0
- data/gems/yard-0.9.25/lib/yard.rb +69 -0
- data/gems/yard-0.9.25/po/ja.po +31108 -0
- data/gems/yard-0.9.25/samus.json +80 -0
- data/gems/yard-0.9.25/tasks/update_error_map.rake +53 -0
- data/gems/yard-0.9.25/templates/default/class/dot/setup.rb +7 -0
- data/gems/yard-0.9.25/templates/default/class/dot/superklass.erb +3 -0
- data/gems/yard-0.9.25/templates/default/class/html/constructor_details.erb +8 -0
- data/gems/yard-0.9.25/templates/default/class/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/default/class/html/subclasses.erb +4 -0
- data/gems/yard-0.9.25/templates/default/class/setup.rb +36 -0
- data/gems/yard-0.9.25/templates/default/class/text/setup.rb +12 -0
- data/gems/yard-0.9.25/templates/default/class/text/subclasses.erb +5 -0
- data/gems/yard-0.9.25/templates/default/constant/text/header.erb +11 -0
- data/gems/yard-0.9.25/templates/default/constant/text/setup.rb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/abstract.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/deprecated.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/index.erb +5 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/note.erb +6 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/private.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/returns_void.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/text.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/todo.erb +6 -0
- data/gems/yard-0.9.25/templates/default/docstring/setup.rb +52 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/abstract.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/deprecated.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/index.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/note.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/private.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/returns_void.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/text.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/todo.erb +4 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/common.css +1 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/full_list.css +58 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/style.css +496 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/frames.erb +17 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list.erb +37 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_class.erb +2 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_file.erb +7 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_method.erb +10 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/app.js +314 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/full_list.js +216 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/jquery.js +4 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/setup.rb +241 -0
- data/gems/yard-0.9.25/templates/default/layout/dot/header.erb +6 -0
- data/gems/yard-0.9.25/templates/default/layout/dot/setup.rb +15 -0
- data/gems/yard-0.9.25/templates/default/layout/html/breadcrumb.erb +11 -0
- data/gems/yard-0.9.25/templates/default/layout/html/files.erb +11 -0
- data/gems/yard-0.9.25/templates/default/layout/html/footer.erb +5 -0
- data/gems/yard-0.9.25/templates/default/layout/html/headers.erb +15 -0
- data/gems/yard-0.9.25/templates/default/layout/html/index.erb +2 -0
- data/gems/yard-0.9.25/templates/default/layout/html/layout.erb +24 -0
- data/gems/yard-0.9.25/templates/default/layout/html/listing.erb +4 -0
- data/gems/yard-0.9.25/templates/default/layout/html/objects.erb +32 -0
- data/gems/yard-0.9.25/templates/default/layout/html/script_setup.erb +4 -0
- data/gems/yard-0.9.25/templates/default/layout/html/search.erb +13 -0
- data/gems/yard-0.9.25/templates/default/layout/html/setup.rb +89 -0
- data/gems/yard-0.9.25/templates/default/method/html/header.erb +17 -0
- data/gems/yard-0.9.25/templates/default/method/setup.rb +4 -0
- data/gems/yard-0.9.25/templates/default/method/text/header.erb +1 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/header.erb +3 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/method_signature.erb +25 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/source.erb +10 -0
- data/gems/yard-0.9.25/templates/default/method_details/setup.rb +11 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/header.erb +10 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/method_signature.erb +12 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/setup.rb +11 -0
- data/gems/yard-0.9.25/templates/default/module/dot/child.erb +1 -0
- data/gems/yard-0.9.25/templates/default/module/dot/dependencies.erb +3 -0
- data/gems/yard-0.9.25/templates/default/module/dot/header.erb +6 -0
- data/gems/yard-0.9.25/templates/default/module/dot/info.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/dot/setup.rb +15 -0
- data/gems/yard-0.9.25/templates/default/module/html/attribute_details.erb +10 -0
- data/gems/yard-0.9.25/templates/default/module/html/attribute_summary.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/box_info.erb +43 -0
- data/gems/yard-0.9.25/templates/default/module/html/children.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/constant_summary.erb +17 -0
- data/gems/yard-0.9.25/templates/default/module/html/defines.erb +3 -0
- data/gems/yard-0.9.25/templates/default/module/html/header.erb +5 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_attributes.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_constants.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_methods.erb +19 -0
- data/gems/yard-0.9.25/templates/default/module/html/item_summary.erb +40 -0
- data/gems/yard-0.9.25/templates/default/module/html/method_details_list.erb +9 -0
- data/gems/yard-0.9.25/templates/default/module/html/method_summary.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/html/methodmissing.erb +12 -0
- data/gems/yard-0.9.25/templates/default/module/html/pre_docstring.erb +1 -0
- data/gems/yard-0.9.25/templates/default/module/setup.rb +167 -0
- data/gems/yard-0.9.25/templates/default/module/text/children.erb +10 -0
- data/gems/yard-0.9.25/templates/default/module/text/class_meths_list.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/extends.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/header.erb +7 -0
- data/gems/yard-0.9.25/templates/default/module/text/includes.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/instance_meths_list.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/setup.rb +13 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/files.erb +5 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/headers.erb +6 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/layout.erb +17 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/readme.erb +3 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/setup.rb +62 -0
- data/gems/yard-0.9.25/templates/default/root/dot/child.erb +3 -0
- data/gems/yard-0.9.25/templates/default/root/dot/setup.rb +6 -0
- data/gems/yard-0.9.25/templates/default/root/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/default/tags/html/example.erb +11 -0
- data/gems/yard-0.9.25/templates/default/tags/html/index.erb +3 -0
- data/gems/yard-0.9.25/templates/default/tags/html/option.erb +24 -0
- data/gems/yard-0.9.25/templates/default/tags/html/overload.erb +14 -0
- data/gems/yard-0.9.25/templates/default/tags/html/see.erb +8 -0
- data/gems/yard-0.9.25/templates/default/tags/html/tag.erb +20 -0
- data/gems/yard-0.9.25/templates/default/tags/setup.rb +57 -0
- data/gems/yard-0.9.25/templates/default/tags/text/example.erb +12 -0
- data/gems/yard-0.9.25/templates/default/tags/text/index.erb +1 -0
- data/gems/yard-0.9.25/templates/default/tags/text/option.erb +20 -0
- data/gems/yard-0.9.25/templates/default/tags/text/overload.erb +19 -0
- data/gems/yard-0.9.25/templates/default/tags/text/see.erb +11 -0
- data/gems/yard-0.9.25/templates/default/tags/text/tag.erb +13 -0
- data/gems/yard-0.9.25/templates/guide/class/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/guide/docstring/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/css/style.css +108 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/js/app.js +33 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/setup.rb +74 -0
- data/gems/yard-0.9.25/templates/guide/layout/html/layout.erb +81 -0
- data/gems/yard-0.9.25/templates/guide/layout/html/setup.rb +25 -0
- data/gems/yard-0.9.25/templates/guide/method/html/header.erb +18 -0
- data/gems/yard-0.9.25/templates/guide/method/html/setup.rb +22 -0
- data/gems/yard-0.9.25/templates/guide/module/html/header.erb +7 -0
- data/gems/yard-0.9.25/templates/guide/module/html/method_list.erb +5 -0
- data/gems/yard-0.9.25/templates/guide/module/html/setup.rb +27 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/files.erb +4 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/setup.rb +6 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/toc.erb +3 -0
- data/gems/yard-0.9.25/templates/guide/tags/html/setup.rb +9 -0
- data/gems/yard-0.9.25/yard.gemspec +24 -0
- data/kinetic_sdk.gemspec +0 -4
- data/lib/kinetic_sdk/core/lib/form.rb +55 -0
- data/lib/kinetic_sdk/core/lib/kapp.rb +52 -0
- data/lib/kinetic_sdk/core/lib/space.rb +51 -0
- data/lib/kinetic_sdk/task/lib/export.rb +22 -2
- data/lib/kinetic_sdk/task/lib/trees.rb +11 -0
- data/lib/kinetic_sdk/version.rb +1 -1
- data/lib/kinetic_sdk.rb +2 -22
- metadata +534 -225
- data/gems/kontena-websocket-client-0.1.1/Gemfile +0 -4
- data/gems/kontena-websocket-client-0.1.1/LICENSE +0 -190
- data/gems/kontena-websocket-client-0.1.1/README.md +0 -138
- data/gems/kontena-websocket-client-0.1.1/Rakefile +0 -6
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-client.rb +0 -45
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-em.rb +0 -66
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.rb +0 -161
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.sh +0 -17
- data/gems/kontena-websocket-client-0.1.1/benchmark/websocket-echo-server.go +0 -207
- data/gems/kontena-websocket-client-0.1.1/examples/websocket-echo-client.rb +0 -80
- data/gems/kontena-websocket-client-0.1.1/kontena-websocket-client.gemspec +0 -24
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/connection.rb +0 -119
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/version.rb +0 -13
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client.rb +0 -848
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/error.rb +0 -81
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/logging.rb +0 -55
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/openssl_patch.rb +0 -10
- data/gems/kontena-websocket-client-0.1.1/lib/kontena-websocket-client.rb +0 -15
- data/gems/mime-types-3.3.1/Contributing.md +0 -143
- data/gems/mime-types-3.3.1/History.md +0 -240
- data/gems/mime-types-3.3.1/Rakefile +0 -284
- data/gems/mime-types-3.3.1/test/minitest_helper.rb +0 -13
- data/gems/mime-types-3.3.1/test/test_mime_type.rb +0 -610
- data/gems/mime-types-3.3.1/test/test_mime_types.rb +0 -169
- data/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +0 -118
- data/gems/mime-types-3.3.1/test/test_mime_types_class.rb +0 -159
- data/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +0 -49
- data/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +0 -32
- data/gems/mime-types-data-3.2021.0225/Licence.md +0 -25
- data/gems/mime-types-data-3.2021.0225/Rakefile +0 -159
- data/gems/mime-types-data-3.2021.0225/data/mime-types.json +0 -1
- data/gems/mime-types-data-3.2021.0225/data/mime.flags.column +0 -2315
- data/gems/parallel-1.12.1/lib/parallel/processor_count.rb +0 -93
- data/gems/parallel-1.12.1/lib/parallel/version.rb +0 -3
- data/gems/parallel-1.12.1/lib/parallel.rb +0 -500
- data/gems/ruby-progressbar-1.9.0/LICENSE.txt +0 -19
- data/gems/ruby-progressbar-1.9.0/README.md +0 -38
- data/gems/ruby-progressbar-1.9.0/Rakefile +0 -2
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/base.rb +0 -183
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/length.rb +0 -99
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/running_average.rb +0 -9
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/bar.rb +0 -96
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/percentage.rb +0 -29
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/rate.rb +0 -43
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/time.rb +0 -107
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/title.rb +0 -13
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components.rb +0 -5
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +0 -4
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/formatter.rb +0 -27
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/molecule.rb +0 -59
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/string.rb +0 -36
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format.rb +0 -3
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/output.rb +0 -68
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/non_tty.rb +0 -47
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/null.rb +0 -33
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/tty.rb +0 -32
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/progress.rb +0 -118
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements/enumerator.rb +0 -25
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements.rb +0 -1
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb +0 -25
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/time.rb +0 -30
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/timer.rb +0 -72
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/version.rb +0 -3
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar.rb +0 -18
- data/gems/websocket-driver-0.6.5/CHANGELOG.md +0 -123
- data/gems/websocket-driver-0.6.5/LICENSE.md +0 -22
- data/gems/websocket-driver-0.6.5/README.md +0 -369
- data/gems/websocket-driver-0.6.5/examples/tcp_server.rb +0 -28
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/Makefile +0 -264
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/WebsocketMaskService.java +0 -55
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/extconf.rb +0 -4
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.bundle +0 -0
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.c +0 -41
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.o +0 -0
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/client.rb +0 -140
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft75.rb +0 -102
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft76.rb +0 -96
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/event_emitter.rb +0 -54
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/headers.rb +0 -45
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/frame.rb +0 -20
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/message.rb +0 -31
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi.rb +0 -406
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/proxy.rb +0 -68
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/server.rb +0 -80
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/stream_reader.rb +0 -55
- data/gems/websocket-driver-0.6.5/lib/websocket/driver.rb +0 -199
- data/gems/websocket-driver-0.6.5/lib/websocket/http/headers.rb +0 -112
- data/gems/websocket-driver-0.6.5/lib/websocket/http/request.rb +0 -45
- data/gems/websocket-driver-0.6.5/lib/websocket/http/response.rb +0 -29
- data/gems/websocket-driver-0.6.5/lib/websocket/http.rb +0 -15
- data/gems/websocket-driver-0.6.5/lib/websocket/mask.rb +0 -14
- data/gems/websocket-driver-0.6.5/lib/websocket/websocket_mask.rb +0 -2
- data/gems/websocket-driver-0.6.5/lib/websocket_mask.bundle +0 -0
- data/gems/websocket-driver-0.6.5-java/CHANGELOG.md +0 -123
- data/gems/websocket-driver-0.6.5-java/README.md +0 -369
- data/gems/websocket-driver-0.6.5-java/examples/tcp_server.rb +0 -28
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/WebsocketMaskService.java +0 -55
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/extconf.rb +0 -4
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/websocket_mask.c +0 -41
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/client.rb +0 -140
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft75.rb +0 -102
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft76.rb +0 -96
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/event_emitter.rb +0 -54
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/headers.rb +0 -45
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/frame.rb +0 -20
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/message.rb +0 -31
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi.rb +0 -406
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/proxy.rb +0 -68
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/server.rb +0 -80
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/stream_reader.rb +0 -55
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver.rb +0 -199
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/headers.rb +0 -112
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/request.rb +0 -45
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/response.rb +0 -29
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http.rb +0 -15
- data/gems/websocket-driver-0.6.5-java/lib/websocket/mask.rb +0 -14
- data/gems/websocket-driver-0.6.5-java/lib/websocket/websocket_mask.rb +0 -2
- data/gems/websocket-driver-0.6.5-java/lib/websocket_mask.jar +0 -0
- data/gems/websocket-extensions-0.1.3/CHANGELOG.md +0 -15
- data/gems/websocket-extensions-0.1.3/LICENSE.md +0 -20
- data/gems/websocket-extensions-0.1.3/README.md +0 -313
- data/gems/websocket-extensions-0.1.3/lib/websocket/extensions/parser.rb +0 -111
- data/gems/websocket-extensions-0.1.3/lib/websocket/extensions.rb +0 -181
- data/lib/kinetic_sdk/discussions/lib/websockets.rb +0 -96
@@ -0,0 +1,679 @@
|
|
1
|
+
# @title Getting Started Guide
|
2
|
+
|
3
|
+
# Getting Started with YARD
|
4
|
+
|
5
|
+
There are a few ways which YARD can be of use to you or your project. This
|
6
|
+
document will cover the most common ways to use YARD:
|
7
|
+
|
8
|
+
* [Documenting Code with YARD](#docing)
|
9
|
+
* [Using YARD to Generate Documentation](#using)
|
10
|
+
* [Configuring YARD](#config)
|
11
|
+
* [Extending YARD](#extending)
|
12
|
+
* [Templating YARD](#templating)
|
13
|
+
* [Plugin Support](#plugins)
|
14
|
+
|
15
|
+
<a name="docing"></a>
|
16
|
+
|
17
|
+
## Documenting Code with YARD
|
18
|
+
|
19
|
+
By default, YARD is compatible with the same RDoc syntax most Ruby developers
|
20
|
+
are already familiar with. However, one of the biggest advantages of YARD is
|
21
|
+
the extended meta-data syntax, commonly known as "tags", that you can use
|
22
|
+
to express small bits of information in a structured and formal manner. While
|
23
|
+
RDoc syntax expects you to describe your method in a completely free-form
|
24
|
+
manner, YARD recommends declaring your parameters, return types, etc. with
|
25
|
+
the `@tag` syntax, which makes outputting the documentation more consistent
|
26
|
+
and easier to read. Consider the RDoc documentation for a method to_format:
|
27
|
+
|
28
|
+
# Converts the object into textual markup given a specific `format`
|
29
|
+
# (defaults to `:html`)
|
30
|
+
#
|
31
|
+
# == Parameters:
|
32
|
+
# format::
|
33
|
+
# A Symbol declaring the format to convert the object to. This
|
34
|
+
# can be `:text` or `:html`.
|
35
|
+
#
|
36
|
+
# == Returns:
|
37
|
+
# A string representing the object in a specified
|
38
|
+
# format.
|
39
|
+
#
|
40
|
+
def to_format(format = :html)
|
41
|
+
# format the object
|
42
|
+
end
|
43
|
+
|
44
|
+
While this may seem easy enough to read and understand, it's hard for a machine
|
45
|
+
to properly pull this data back out of our documentation. Also we've tied our
|
46
|
+
markup to our content, and now our documentation becomes hard to maintain if
|
47
|
+
we decide later to change our markup style (maybe we don't want the ":" suffix
|
48
|
+
on our headers anymore).
|
49
|
+
|
50
|
+
In YARD, we would simply define our method as:
|
51
|
+
|
52
|
+
# Converts the object into textual markup given a specific format.
|
53
|
+
#
|
54
|
+
# @param format [Symbol] the format type, `:text` or `:html`
|
55
|
+
# @return [String] the object converted into the expected format.
|
56
|
+
def to_format(format = :html)
|
57
|
+
# format the object
|
58
|
+
end
|
59
|
+
|
60
|
+
Using tags we can add semantic metadata to our code without worrying about
|
61
|
+
presentation. YARD will handle presentation for us when we decide to generate
|
62
|
+
documentation later.
|
63
|
+
|
64
|
+
## Which Markup Format?
|
65
|
+
|
66
|
+
YARD does not impose a specific markup. The above example uses standard RDoc
|
67
|
+
markup formatting, but YARD also supports textile and markdown via the
|
68
|
+
command-line switch or `.yardopts` file (see below). This means that you are
|
69
|
+
free to use whatever formatting you like. This guide is actually written
|
70
|
+
using markdown. YARD, however, does add a few important syntaxes that are
|
71
|
+
processed no matter which markup formatting you use, such as tag support
|
72
|
+
and inter-document linking. These syntaxes are discussed below.
|
73
|
+
|
74
|
+
## Adding Tags to Documentation
|
75
|
+
|
76
|
+
The tag syntax that YARD uses is the same @tag-style syntax you may have seen
|
77
|
+
if you've ever coded in Java, Python, PHP, Objective-C or a myriad of other
|
78
|
+
languages. The following tag adds an author tag to your class:
|
79
|
+
|
80
|
+
# @author Loren Segal
|
81
|
+
class MyClass
|
82
|
+
end
|
83
|
+
|
84
|
+
To allow for large amounts of text, the @tag syntax will recognize any indented
|
85
|
+
lines following a tag as part of the tag data. For example:
|
86
|
+
|
87
|
+
# @deprecated Use {#my_new_method} instead of this method because
|
88
|
+
# it uses a library that is no longer supported in Ruby 1.9.
|
89
|
+
# The new method accepts the same parameters.
|
90
|
+
def mymethod
|
91
|
+
end
|
92
|
+
|
93
|
+
### List of Tags
|
94
|
+
|
95
|
+
A list of tags can be found in {file:docs/Tags.md#taglist}
|
96
|
+
|
97
|
+
### Reference Tags
|
98
|
+
|
99
|
+
To reduce the amount of duplication in writing documentation for repetitive
|
100
|
+
code, YARD introduces "reference tags", which are not quite tags, but not
|
101
|
+
quite docstrings either. In a sense, they are tag (and docstring) modifiers.
|
102
|
+
Basically, any docstring (or tag) that begins with "(see OTHEROBJECT)" will
|
103
|
+
implicitly link the docstring or tag to the "OTHEROBJECT", copying any data
|
104
|
+
from that docstring/tag into your current object. Consider the example:
|
105
|
+
|
106
|
+
class MyWebServer
|
107
|
+
# Handles a request
|
108
|
+
# @param request [Request] the request object
|
109
|
+
# @return [String] the resulting webpage
|
110
|
+
def get(request) "hello" end
|
111
|
+
|
112
|
+
# (see #get)
|
113
|
+
def post(request) "hello" end
|
114
|
+
end
|
115
|
+
|
116
|
+
The above `#post` method takes the docstring and all tags (`param` and `return`)
|
117
|
+
of the `#get` method. When you generate HTML documentation, you will see this
|
118
|
+
duplication automatically, so you don't have to manually type it out. We can
|
119
|
+
also add our own custom docstring information below the "see" reference, and
|
120
|
+
whatever we write will be appended to the docstring:
|
121
|
+
|
122
|
+
# (see #get)
|
123
|
+
# @note This method may modify our application state!
|
124
|
+
def post(request) self.state += 1; "hello" end
|
125
|
+
|
126
|
+
Here we added another tag, but we could have also added plain text. The
|
127
|
+
text must be appended *after* the `(see ...)` statement, preferably on
|
128
|
+
a separate line.
|
129
|
+
|
130
|
+
Note that we don't have to "refer" the whole docstring. We can also link
|
131
|
+
individual tags instead. Since "get" and "post" actually have different
|
132
|
+
descriptions, a more accurate example would be to only refer our parameter
|
133
|
+
and return tags:
|
134
|
+
|
135
|
+
class MyWebServer
|
136
|
+
# Handles a GET request
|
137
|
+
# @param request [Request] the request object
|
138
|
+
# @return [String] the resulting webpage
|
139
|
+
def get(request) "hello" end
|
140
|
+
|
141
|
+
# Handles a POST request
|
142
|
+
# @note This method may modify our application state!
|
143
|
+
# @param (see #get)
|
144
|
+
# @return (see #get)
|
145
|
+
def post(request) self.state += 1; "hello" end
|
146
|
+
end
|
147
|
+
|
148
|
+
The above copies all of the param and return tags from `#get`. Note that you
|
149
|
+
cannot copy individual tags of a specific type with this syntax.
|
150
|
+
|
151
|
+
## Declaring Types
|
152
|
+
|
153
|
+
Some tags also have an optional "types" field which let us declare a list of
|
154
|
+
types associated with the tag. For instance, a return tag can be declared
|
155
|
+
with or without a types field.
|
156
|
+
|
157
|
+
# @return [String, nil] the contents of our object or nil
|
158
|
+
# if the object has not been filled with data.
|
159
|
+
def validate; end
|
160
|
+
|
161
|
+
# We don't care about the "type" here:
|
162
|
+
# @return the object
|
163
|
+
def to_obj; end
|
164
|
+
|
165
|
+
The list of types is in the form `[type1, type2, ...]` and is mostly free-form,
|
166
|
+
so we can also specify duck-types or constant values. For example:
|
167
|
+
|
168
|
+
# @param argname [#to_s] any object that responds to `#to_s`
|
169
|
+
# @param argname [true, false] only true or false
|
170
|
+
|
171
|
+
Note the latter example can be replaced by the meta-type "Boolean".
|
172
|
+
Another meta-type is "void", which stands for "no meaningful value"
|
173
|
+
and is used for return values. These meta-types are by convention
|
174
|
+
only, but are recommended.
|
175
|
+
|
176
|
+
List types can be specified in the form `CollectionClass<ElementType, ...>`.
|
177
|
+
For instance, consider the following Array that holds a set of Strings and
|
178
|
+
Symbols:
|
179
|
+
|
180
|
+
# @param list [Array<String, Symbol>] the list of strings and symbols.
|
181
|
+
|
182
|
+
We mentioned that these type fields are "mostly" free-form. In truth, they
|
183
|
+
are defined "by convention". To view samples of common type specifications
|
184
|
+
and recommended conventions for writing type specifications, see
|
185
|
+
[http://yardoc.org/types.html](http://yardoc.org/types.html). Note that these
|
186
|
+
conventions may change every now and then, although we are working on a more
|
187
|
+
"formal" type specification proposal.
|
188
|
+
|
189
|
+
## Documenting Attributes
|
190
|
+
|
191
|
+
To document a Ruby attribute, add documentation text above the attribute
|
192
|
+
definition.
|
193
|
+
|
194
|
+
# Controls the amplitude of the waveform.
|
195
|
+
# @return [Numeric] the amplitude of the waveform
|
196
|
+
attr_accessor :amplitude
|
197
|
+
|
198
|
+
As a short-hand syntax for declaring reader and writer attribute pairs,
|
199
|
+
YARD will automatically wire up the correct method types and information
|
200
|
+
by simply defining documentation in the `@return` tag. For example,
|
201
|
+
the following declaration will show the correct information for the
|
202
|
+
`waveform` attribute, both for the getter's return type and the
|
203
|
+
setter's value parameter type:
|
204
|
+
|
205
|
+
# @return [Numeric] the amplitude of the waveform
|
206
|
+
attr_accessor :amplitude
|
207
|
+
|
208
|
+
In this case, the most important details for the attribute are the
|
209
|
+
object type declaration and its descriptive text.
|
210
|
+
|
211
|
+
### Documentation for a Separate Attribute Writer
|
212
|
+
|
213
|
+
Usually an attribute will get and set a value using the same syntax,
|
214
|
+
so there is no reason to have separate documentation for an attribute
|
215
|
+
writer. In the above `amplitude` case, the `Numeric` type is both used
|
216
|
+
for the getter and setter types.
|
217
|
+
|
218
|
+
Sometimes, however, you might want to have separate documentation
|
219
|
+
for the getter and setter. In this case, you would still add
|
220
|
+
the documentation text to the getter declaration (or `attr_accessor`)
|
221
|
+
and use `@overload` tags to declare the separate docstrings. For example:
|
222
|
+
|
223
|
+
# @overload amplitude
|
224
|
+
# Gets the current waveform amplitude.
|
225
|
+
# @return [Numeric] the amplitude of the waveform
|
226
|
+
# @overload amplitude=(value)
|
227
|
+
# Sets the new amplitude.
|
228
|
+
# @param value [Numeric] the new amplitude value
|
229
|
+
# @note The new amplitude will only take effect if {#restart}
|
230
|
+
# is called on the stream.
|
231
|
+
|
232
|
+
Note that by default, YARD exposes the reader portion of the attribute
|
233
|
+
in HTML output. If you have separate `attr_reader` and `attr_writer`
|
234
|
+
declarations, make sure to put your documentation (for both reader
|
235
|
+
and writer methods) on the reader declaration using `@overload`
|
236
|
+
tags as described above. For example:
|
237
|
+
|
238
|
+
# @overload ...documentation here...
|
239
|
+
attr_reader :amplitude
|
240
|
+
|
241
|
+
# This documentation will be ignored by YARD.
|
242
|
+
attr_writer :amplitude
|
243
|
+
|
244
|
+
## Documenting Custom DSL Methods
|
245
|
+
|
246
|
+
Application code in Ruby often makes use of DSL style metaprogrammed methods.
|
247
|
+
The most common is the `attr_accessor` method, which of course has built-in
|
248
|
+
support in YARD. However, frameworks and libraries often expose custom
|
249
|
+
methods that perform similar metaprogramming tasks, and it is often useful
|
250
|
+
to document their functionality in your application. Consider the `property`
|
251
|
+
method in a project like [DataMapper](http://datamapper.org), which creates
|
252
|
+
a typed attribute for a database model. The code might look like:
|
253
|
+
|
254
|
+
class Post
|
255
|
+
include DataMapper::Resource
|
256
|
+
|
257
|
+
property :title, String
|
258
|
+
end
|
259
|
+
|
260
|
+
As of version 0.7.0, YARD will automatically pick up on these basic methods if
|
261
|
+
you document them with a docstring. Therefore, simply adding some comments to
|
262
|
+
the code will cause it to generate documentation:
|
263
|
+
|
264
|
+
class Post
|
265
|
+
include DataMapper::Resource
|
266
|
+
|
267
|
+
# @return [String] the title property of the post
|
268
|
+
property :title, String
|
269
|
+
end
|
270
|
+
|
271
|
+
Note that YARD uses the first argument in the method call to determine the
|
272
|
+
method name. In some cases, this would not be the method name, and you would
|
273
|
+
need to declare it manually. You can do so with the `@!method` directive:
|
274
|
+
|
275
|
+
# @!method foo
|
276
|
+
create_a_foo_method
|
277
|
+
|
278
|
+
The @!method directive can also accept a full method signature with parameters:
|
279
|
+
|
280
|
+
# @!method foo(name, opts = {})
|
281
|
+
create_a_foo_method
|
282
|
+
|
283
|
+
You can also set visibility and scope, or modify the method signature with
|
284
|
+
extra tags. The following adds documentation for a private class method:
|
285
|
+
|
286
|
+
# @!method foo(opts = {})
|
287
|
+
# The foo method!
|
288
|
+
# @!scope class
|
289
|
+
# @!visibility private
|
290
|
+
create_a_private_foo_class_method
|
291
|
+
|
292
|
+
Finally, you can tag a method as an attribute by replacing the @!method
|
293
|
+
tag with @!attribute. The @!attribute directive allows for the flags [r], [w],
|
294
|
+
or [rw] to declare a readonly, writeonly, or readwrite attribute, respectively.
|
295
|
+
|
296
|
+
# @!attribute [w]
|
297
|
+
# The writeonly foo attribute!
|
298
|
+
a_writeonly_attribute :foo
|
299
|
+
|
300
|
+
(Note that if the name can be automatically detected, you do not need to
|
301
|
+
specify it in the @!method or @!attribute directives)
|
302
|
+
|
303
|
+
However, you will notice a few drawbacks with this basic support:
|
304
|
+
|
305
|
+
1. There is a fair bit of duplication in such documentation. Specifically, we
|
306
|
+
repeat the term String and title twice in the property example.
|
307
|
+
2. We must write a code comment for this property to show up in the documentation.
|
308
|
+
If we do not write a comment, it is ignored.
|
309
|
+
|
310
|
+
### Macros
|
311
|
+
|
312
|
+
Fortunately YARD 0.7.0 also adds macros, a powerful way to add support for
|
313
|
+
these DSL methods on the fly without writing extra plugins. Macros allow
|
314
|
+
you to interpolate arguments from the method call inside the docstring,
|
315
|
+
reducing duplication. If we re-wrote the `property` example from above
|
316
|
+
using a macro, it might look like:
|
317
|
+
|
318
|
+
class Post
|
319
|
+
include DataMapper::Resource
|
320
|
+
|
321
|
+
# @!macro dm.property
|
322
|
+
# @return [$2] the $1 $0 of the post
|
323
|
+
property :title, String
|
324
|
+
end
|
325
|
+
|
326
|
+
(Note that $0 represents the method call, in this case `property`. The rest
|
327
|
+
are arguments in the method call.)
|
328
|
+
|
329
|
+
The above example is equivalent to the first version shown in the previous
|
330
|
+
section. There is also some extra benefit to using this macro, in that we
|
331
|
+
can re-apply it to any other property in our class by simply calling on
|
332
|
+
the macro. The following:
|
333
|
+
|
334
|
+
# @!macro dm.property
|
335
|
+
property :view_count, Integer
|
336
|
+
|
337
|
+
Would be equivalent to:
|
338
|
+
|
339
|
+
# @return [Integer] the view_count property of the post
|
340
|
+
property :view_count, Integer
|
341
|
+
|
342
|
+
Finally, macros can be "attached" to method calls, allowing them to be implicitly
|
343
|
+
activated every time the method call is seen in the source code of the class,
|
344
|
+
or an inheriting class. By simply adding the `[attach]` flag, the macro
|
345
|
+
becomes implicit on future calls. All of the properties below get documented
|
346
|
+
by using this snippet:
|
347
|
+
|
348
|
+
class Post
|
349
|
+
include DataMapper::Resource
|
350
|
+
|
351
|
+
# @!macro [attach] dm.property
|
352
|
+
# @return [$2] the $1 $0 of the post
|
353
|
+
property :title, String
|
354
|
+
property :view_count, Integer
|
355
|
+
property :email, String
|
356
|
+
end
|
357
|
+
|
358
|
+
You can read more about macros in the {file:docs/Tags.md Tags Overview} document.
|
359
|
+
|
360
|
+
## Customized YARD Markup
|
361
|
+
|
362
|
+
YARD supports a special syntax to link to other code objects, URLs, files,
|
363
|
+
or embed docstrings between documents. This syntax has the general form
|
364
|
+
of `{Name OptionalTitle}` (where `OptionalTitle` can have spaces, but `Name`
|
365
|
+
cannot).
|
366
|
+
|
367
|
+
### Linking Objects `{...}`
|
368
|
+
|
369
|
+
To link another "object" (class, method, module, etc.), use the format:
|
370
|
+
|
371
|
+
{ObjectName#method OPTIONAL_TITLE}
|
372
|
+
{Class::CONSTANT My constant's title}
|
373
|
+
{#method_inside_current_namespace}
|
374
|
+
|
375
|
+
Without an explicit title, YARD will use the relative path to the object as
|
376
|
+
the link name. Note that you can also use relative paths inside the object
|
377
|
+
path to refer to an object inside the same namespace as your current docstring.
|
378
|
+
|
379
|
+
Note that the `@see` tag automatically links its data. You should not use
|
380
|
+
the link syntax in this tag:
|
381
|
+
|
382
|
+
# @see #methodname <- Correct.
|
383
|
+
# @see {#methodname} <- Incorrect.
|
384
|
+
|
385
|
+
If you want to use a Hash, prefix the first { with "!":
|
386
|
+
|
387
|
+
# !{ :some_key => 'value' }
|
388
|
+
|
389
|
+
### Linking URLs `{http://...}`
|
390
|
+
|
391
|
+
URLs are also linked using this `{...}` syntax:
|
392
|
+
|
393
|
+
{http://example.com Optional Title}
|
394
|
+
{mailto:email@example.com}
|
395
|
+
|
396
|
+
### Linking Files `{file:...}`
|
397
|
+
|
398
|
+
Files can also be linked using this same syntax but by adding the `file:`
|
399
|
+
prefix to the object name. Files refer to extra readme files you added
|
400
|
+
via the command-line. Consider the following examples:
|
401
|
+
|
402
|
+
{file:docs/GettingStarted.md Getting Started}
|
403
|
+
{file:mypage.html#anchor Name}
|
404
|
+
|
405
|
+
As shown, you can also add an optional `#anchor` if the page is an HTML link.
|
406
|
+
|
407
|
+
### Embedding Docstrings `{include:...}`
|
408
|
+
|
409
|
+
We saw the `(see ...)` syntax above, which allowed us to link an entire docstring
|
410
|
+
with another. Sometimes, however, we just want to copy docstring text without
|
411
|
+
tags. Using the same `{...}` syntax, but using the `include:` prefix, we can
|
412
|
+
embed a docstring (minus tags) at a specific point in the text.
|
413
|
+
|
414
|
+
# This class is cool
|
415
|
+
# @abstract
|
416
|
+
class Foo; end
|
417
|
+
|
418
|
+
# This is another class. {include:Foo} too!
|
419
|
+
class Bar; end
|
420
|
+
|
421
|
+
The docstring for Bar becomes:
|
422
|
+
|
423
|
+
"This is another class. This class is cool too!"
|
424
|
+
|
425
|
+
### Embedding Files `{include:file:...}`
|
426
|
+
|
427
|
+
You can embed the contents of files using `{include:file:path/to/file}`,
|
428
|
+
similar to the `{include:OBJECT}` tag above. If the file uses a specific markup
|
429
|
+
type, it will be applied and embedded as marked up text. The following
|
430
|
+
shows how the tag can be used inside of comments:
|
431
|
+
|
432
|
+
# Here is an example of a highlighted Ruby file:
|
433
|
+
#
|
434
|
+
# {include:file:examples/test.rb}
|
435
|
+
|
436
|
+
### Rendering Objects `{render:...}`
|
437
|
+
|
438
|
+
Entire objects can also be rendered in place in documentation. This can be
|
439
|
+
used for guide-style documentation which does not document the entire source
|
440
|
+
tree, but instead selectively renders important classes or methods. Consider
|
441
|
+
the following documentation inside of a README file:
|
442
|
+
|
443
|
+
!!!plain
|
444
|
+
= igLatinPay!
|
445
|
+
|
446
|
+
This library adds pig latin methods to the string class, allowing you
|
447
|
+
to transform sentences into pig latin.
|
448
|
+
|
449
|
+
{render:String#pig_latin}
|
450
|
+
|
451
|
+
You can also un-pig-latin-ify a word or sentence:
|
452
|
+
|
453
|
+
{render:String#de_pig_latin}
|
454
|
+
|
455
|
+
The above would render the methods in place inside the README document,
|
456
|
+
allowing you to summarize a small library in a single file.
|
457
|
+
|
458
|
+
<a name="using"></a>
|
459
|
+
|
460
|
+
## Using YARD to Generate Documentation
|
461
|
+
|
462
|
+
### `yard` Executable
|
463
|
+
|
464
|
+
YARD ships with a single executable aptly named `yard`. In addition to
|
465
|
+
generating standard documentation for your project, you would use this tool
|
466
|
+
if you wanted to:
|
467
|
+
|
468
|
+
* Document all installed gems
|
469
|
+
* Run a local documentation server
|
470
|
+
* Generate UML diagrams using [Graphviz][graphviz]
|
471
|
+
* View `ri`-style documentation
|
472
|
+
* Diff your documentation
|
473
|
+
* Analyze documentation statistics.
|
474
|
+
|
475
|
+
The following commands are available in YARD 0.6.x (see `yard help` for a
|
476
|
+
full list):
|
477
|
+
|
478
|
+
Usage: yard <command> [options]
|
479
|
+
|
480
|
+
Commands:
|
481
|
+
config Views or edits current global configuration
|
482
|
+
diff Returns the object diff of two gems or .yardoc files
|
483
|
+
doc Generates documentation
|
484
|
+
gems Builds YARD index for gems
|
485
|
+
graph Graphs class diagram using Graphviz
|
486
|
+
help Retrieves help for a command
|
487
|
+
ri A tool to view documentation in the console like `ri`
|
488
|
+
server Runs a local documentation server
|
489
|
+
stats Prints documentation statistics on a set of files
|
490
|
+
|
491
|
+
Note that `yardoc` is an alias for `yard doc`, and `yri` is an alias for
|
492
|
+
`yard ri`. These commands are maintained for backwards compatibility.
|
493
|
+
|
494
|
+
### `.yardopts` Options File
|
495
|
+
|
496
|
+
Unless your documentation is very small, you'll end up needing to run `yardoc`
|
497
|
+
with many options. The `yardoc` tool will use the options found in this file.
|
498
|
+
It is recommended to check this in to your repository and distribute it with
|
499
|
+
your source. This file is placed at the root of your project (in the directory
|
500
|
+
you run `yardoc` from) and contains all of arguments you would otherwise pass
|
501
|
+
to the command-line tool. For instance, if you often type:
|
502
|
+
|
503
|
+
yardoc --no-private --protected app/**/*.rb - README LEGAL COPYING
|
504
|
+
|
505
|
+
You can place the following into your `.yardopts`:
|
506
|
+
|
507
|
+
--no-private --protected app/**/*.rb - README LEGAL COPYING
|
508
|
+
|
509
|
+
This way, you only need to type:
|
510
|
+
|
511
|
+
yardoc
|
512
|
+
|
513
|
+
Any extra switches passed to the command-line now will be appended to your
|
514
|
+
`.yardopts` options.
|
515
|
+
|
516
|
+
Note that options for `yardoc` are discussed in the {file:README.md README},
|
517
|
+
and a full overview of the `.yardopts` file can be found in {YARD::CLI::Yardoc}.
|
518
|
+
|
519
|
+
### Documenting Extra Files
|
520
|
+
|
521
|
+
"Extra files" are extra guide style documents that help to give a brief overview
|
522
|
+
of how to use your library/framework, as well as any extra information that
|
523
|
+
might be vital for your users. The most common "extra file" is the README,
|
524
|
+
which is automatically detected by YARD if found in the root of your project
|
525
|
+
(any file starting with `README*`). You can specify extra files on the command
|
526
|
+
line (or in the `.yardopts` file) by listing them after the '-' separator:
|
527
|
+
|
528
|
+
yardoc lib/**/*.rb ext/**/*.{c,rb} - LICENSE.txt
|
529
|
+
|
530
|
+
Note that the README will automatically be picked up, so you do not need to
|
531
|
+
specify it. If you don't want to modify the default file globs, you can ignore
|
532
|
+
the first set of arguments:
|
533
|
+
|
534
|
+
yardoc - LICENSE.txt
|
535
|
+
|
536
|
+
Below you can read about how to customize the look of these extra files, both
|
537
|
+
with markup and pretty titles.
|
538
|
+
|
539
|
+
#### Adding Meta-Data to Extra Files
|
540
|
+
|
541
|
+
You can add YARD-style `@tag` metadata to the top of any extra file if prefixed
|
542
|
+
by a `#` hash comment. YARD allows for arbitrary meta-data, but pays special
|
543
|
+
attention to the tags `@markup`, `@encoding`, and `@title`. Note that there
|
544
|
+
cannot be any whitespace before the tags. Here is an example of some tag data
|
545
|
+
in a README:
|
546
|
+
|
547
|
+
# @markup markdown
|
548
|
+
# @title The Best Library in the World!
|
549
|
+
# @author The Author Name
|
550
|
+
|
551
|
+
This is the best library you will ever meet. Lipsum ...
|
552
|
+
|
553
|
+
The `@markup` tag allows you to specify a markup format to use for the file,
|
554
|
+
including "markdown", "textile", "rdoc", "ruby", "text", "html", or "none"
|
555
|
+
(no markup). This can be used when the markup cannot be auto-detected using
|
556
|
+
the extension of the filename, if the file has no extension, or if you want
|
557
|
+
to override the auto-detection.
|
558
|
+
|
559
|
+
By using `@encoding` you can specify a non-standard encoding. Note that
|
560
|
+
`yardoc --charset` sets the global encoding (for all comments / files),
|
561
|
+
so if you are using unicode across all your files, you can specify it there.
|
562
|
+
Using the `@encoding` tag might be used to override the default global
|
563
|
+
charset, say, if you had a localized `README.jp` file with SJIS data.
|
564
|
+
Also note that this only affects Ruby 1.9.x, as Ruby 1.8 is not properly
|
565
|
+
encoding aware.
|
566
|
+
|
567
|
+
The `@title` tag allows you to specify a full title name for the document.
|
568
|
+
By default, YARD uses the filename as the title of the document and lists
|
569
|
+
it in the file list in the index and file menu. In some cases, the file name
|
570
|
+
might not be descriptive enough, so YARD allows you to specify a full title:
|
571
|
+
|
572
|
+
contents of TITLE.txt:
|
573
|
+
# @title The Title of The Document
|
574
|
+
|
575
|
+
Currently all other meta-data is hidden from view, though accessible
|
576
|
+
programmatically using the {YARD::CodeObjects::ExtraFileObject} class.
|
577
|
+
|
578
|
+
You can wrap the meta data section in an HTML comment to prevent it
|
579
|
+
from being displayed in rendered markdown on GitHub:
|
580
|
+
|
581
|
+
<!--
|
582
|
+
# @markup markdown
|
583
|
+
# @title The Best Library in the World!
|
584
|
+
# @author The Author Name
|
585
|
+
-->
|
586
|
+
|
587
|
+
This is the best library you will ever meet. Lipsum ...
|
588
|
+
|
589
|
+
<a name="config"></a>
|
590
|
+
|
591
|
+
## Configuring YARD
|
592
|
+
|
593
|
+
YARD (0.6.2+) supports a global configuration file stored in `~/.yard/config`.
|
594
|
+
This file is stored as a YAML file and can contain arbitrary keys and values
|
595
|
+
that can be used by YARD at run-time. YARD defines specific keys that are used
|
596
|
+
to control various features, and they are listed in {YARD::Config::DEFAULT_CONFIG_OPTIONS}.
|
597
|
+
A sample configuration file might look like:
|
598
|
+
|
599
|
+
:load_plugins: false
|
600
|
+
:ignored_plugins:
|
601
|
+
- my_plugin
|
602
|
+
- my_other_plugin
|
603
|
+
:autoload_plugins:
|
604
|
+
- my_autoload_plugin
|
605
|
+
:safe_mode: false
|
606
|
+
|
607
|
+
You can also view and edit these configuration options from the commandline
|
608
|
+
using the `yard config` command. To list your configuration, use `yard config --list`.
|
609
|
+
To view a key, use `yard config ITEM`, and to set it, use `yard config ITEM VALUE`.
|
610
|
+
|
611
|
+
<a name="extending"></a>
|
612
|
+
|
613
|
+
## Extending YARD
|
614
|
+
|
615
|
+
There are many ways to extend YARD to support non-standard Ruby syntax (DSLs),
|
616
|
+
add new meta-data tags or programmatically access the intermediate metadata
|
617
|
+
and documentation from code. An overview of YARD's full architecture can be
|
618
|
+
found in the {file:docs/Overview.md} document.
|
619
|
+
|
620
|
+
For information on adding support for Ruby DSLs, see the {file:docs/Handlers.md}
|
621
|
+
and {file:docs/Parser.md} architecture documents.
|
622
|
+
|
623
|
+
For information on adding extra tags, see {file:docs/Tags.md}.
|
624
|
+
|
625
|
+
For information on accessing the data YARD stores about your documentation,
|
626
|
+
look at the {file:docs/CodeObjects.md} architecture document.
|
627
|
+
|
628
|
+
<a name="templating"></a>
|
629
|
+
|
630
|
+
## Templating YARD
|
631
|
+
|
632
|
+
In many cases you may want to change the style of YARD's templates or add extra
|
633
|
+
information after extending it. The {file:docs/Templates.md} architecture
|
634
|
+
document covers the basics of how YARD's templating system works.
|
635
|
+
|
636
|
+
<a name="plugins"></a>
|
637
|
+
|
638
|
+
## Plugin Support
|
639
|
+
|
640
|
+
YARD will allow any RubyGem installed on your system (or in your Gemfile)
|
641
|
+
to be loaded as a plugin provided it has a name with the prefix of
|
642
|
+
`yard-` or `yard_`. In order to load a plugin, use the `--plugin`
|
643
|
+
switch with the short-name (name minus the `yard-` prefix) or full-name
|
644
|
+
of the gem:
|
645
|
+
|
646
|
+
$ gem install yard-custom-plugin
|
647
|
+
...
|
648
|
+
$ yard doc --plugin custom-plugin
|
649
|
+
or
|
650
|
+
$ yard doc --plugin yard-custom-plugin
|
651
|
+
|
652
|
+
Note: you can also put this switch in your `.yardopts` file. See the
|
653
|
+
`.yardopts` section above for more information.
|
654
|
+
|
655
|
+
You can use this functionality to load a custom plugin that
|
656
|
+
[extend](#extending) YARD's functionality. A good example of this
|
657
|
+
is the [yard-rspec][yard-rspec] plugin, which adds [RSpec][rspec] specifications
|
658
|
+
to your documentation (`yardoc` and `yri`). You can try it out by installing
|
659
|
+
the gem or cloning the project and trying the example:
|
660
|
+
|
661
|
+
$ gem install yard-rspec
|
662
|
+
|
663
|
+
You can then load the plugin with:
|
664
|
+
|
665
|
+
$ yard doc --plugin rspec
|
666
|
+
|
667
|
+
YARD also provides a way to temporarily disable plugins on a per-user basis.
|
668
|
+
To disable a plugin create the file `~/.yard/ignored_plugins` with a list
|
669
|
+
of plugin names separated by newlines. Note that the `.yard` directory might
|
670
|
+
not exist, so you may need to create it.
|
671
|
+
|
672
|
+
You may find some useful YARD plugins on [RubyGems][RubyGemsQuery] or with
|
673
|
+
a [Google advanced query][GoogleAdvancedQuery].
|
674
|
+
|
675
|
+
[graphviz]:http://www.graphviz.org
|
676
|
+
[yard-rspec]:http://github.com/lsegal/yard-spec-plugin
|
677
|
+
[rspec]:http://rspec.info
|
678
|
+
[GoogleAdvancedQuery]:https://www.google.com/search?q=site%3Arubygems.org+intitle%3A%22yard-%22+OR+intitle%3A%22yard_%22
|
679
|
+
[RubyGemsQuery]:https://rubygems.org/search?utf8=%E2%9C%93&query=name%3A+yard
|