kinetic_sdk 5.0.18 → 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 +15 -1
- data/README.md +1 -1
- data/gems/{mime-types-3.1/Code-of-Conduct.rdoc → mime-types-3.4.1/Code-of-Conduct.md} +29 -30
- 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.1/Licence.rdoc → mime-types-3.4.1/Licence.md} +3 -3
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/Manifest.txt +4 -4
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/README.rdoc +6 -14
- data/gems/mime-types-3.4.1/Rakefile +270 -0
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/type/columnar.rb +6 -4
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/type.rb +162 -101
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/_columnar.rb +22 -20
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/cache.rb +13 -11
- data/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +3 -0
- data/gems/mime-types-3.4.1/lib/mime/types/container.rb +96 -0
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/deprecations.rb +17 -13
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/full.rb +4 -2
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/loader.rb +29 -18
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/logger.rb +5 -5
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/registry.rb +14 -5
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types.rb +26 -21
- data/gems/mime-types-3.4.1/lib/mime-types.rb +3 -0
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/bad-fixtures/malformed +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/fixture/json.json +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/fixture/old-data +0 -0
- data/gems/{mime-types-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.2016.0521 → mime-types-data-3.2022.0105}/Code-of-Conduct.md +22 -22
- data/gems/mime-types-data-3.2022.0105/Contributing.md +241 -0
- data/gems/mime-types-data-3.2022.0105/History.md +502 -0
- 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.2016.0521 → mime-types-data-3.2022.0105}/Manifest.txt +16 -0
- data/gems/mime-types-data-3.2022.0105/README.md +73 -0
- 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.2016.0521 → mime-types-data-3.2022.0105}/data/mime.content_type.column +432 -13
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.docs.column +419 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.encoding.column +419 -0
- data/gems/mime-types-data-3.2022.0105/data/mime.flags.column +2383 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.friendly.column +419 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.pext.column +419 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.use_instead.column +420 -1
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.xrefs.column +567 -148
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/lib/mime/types/data.rb +2 -2
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/lib/mime-types-data.rb +1 -1
- data/gems/mime-types-data-3.2022.0105/types/application.yaml +17299 -0
- data/gems/mime-types-data-3.2022.0105/types/audio.yaml +1716 -0
- data/gems/mime-types-data-3.2022.0105/types/chemical.yaml +71 -0
- data/gems/mime-types-data-3.2022.0105/types/conference.yaml +9 -0
- data/gems/mime-types-data-3.2022.0105/types/drawing.yaml +15 -0
- data/gems/mime-types-data-3.2022.0105/types/font.yaml +65 -0
- data/gems/mime-types-data-3.2022.0105/types/image.yaml +1252 -0
- data/gems/mime-types-data-3.2022.0105/types/message.yaml +205 -0
- data/gems/mime-types-data-3.2022.0105/types/model.yaml +390 -0
- data/gems/mime-types-data-3.2022.0105/types/multipart.yaml +179 -0
- data/gems/mime-types-data-3.2022.0105/types/provisional-standard-types.yaml +145 -0
- data/gems/mime-types-data-3.2022.0105/types/text.yaml +1166 -0
- data/gems/mime-types-data-3.2022.0105/types/video.yaml +1121 -0
- data/gems/mime-types-data-3.2022.0105/types/world.yaml +8 -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 +3 -7
- 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 +551 -229
- 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.1/Contributing.rdoc +0 -130
- data/gems/mime-types-3.1/History.rdoc +0 -658
- data/gems/mime-types-3.1/Rakefile +0 -254
- data/gems/mime-types-3.1/lib/mime/types/columnar.rb +0 -1
- data/gems/mime-types-3.1/lib/mime/types/container.rb +0 -30
- data/gems/mime-types-3.1/lib/mime-types.rb +0 -1
- data/gems/mime-types-3.1/test/minitest_helper.rb +0 -13
- data/gems/mime-types-3.1/test/test_mime_type.rb +0 -603
- data/gems/mime-types-3.1/test/test_mime_types.rb +0 -161
- data/gems/mime-types-3.1/test/test_mime_types_cache.rb +0 -109
- data/gems/mime-types-3.1/test/test_mime_types_class.rb +0 -155
- data/gems/mime-types-3.1/test/test_mime_types_lazy.rb +0 -43
- data/gems/mime-types-3.1/test/test_mime_types_loader.rb +0 -32
- data/gems/mime-types-data-3.2016.0521/Contributing.md +0 -157
- data/gems/mime-types-data-3.2016.0521/History.md +0 -351
- data/gems/mime-types-data-3.2016.0521/Licence.md +0 -25
- data/gems/mime-types-data-3.2016.0521/README.md +0 -61
- data/gems/mime-types-data-3.2016.0521/Rakefile +0 -80
- data/gems/mime-types-data-3.2016.0521/data/mime-types.json +0 -1
- data/gems/mime-types-data-3.2016.0521/data/mime.flags.column +0 -1964
- 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,789 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'digest/sha1'
|
3
|
+
require 'fileutils'
|
4
|
+
|
5
|
+
module YARD
|
6
|
+
module CLI
|
7
|
+
# Default options used in +yard doc+ command.
|
8
|
+
class YardocOptions < Templates::TemplateOptions
|
9
|
+
# @return [Array<CodeObjects::ExtraFileObject>]
|
10
|
+
# the list of extra files rendered along with objects
|
11
|
+
default_attr :files, lambda { [] }
|
12
|
+
|
13
|
+
# @return [String] the default title appended to each generated page
|
14
|
+
default_attr :title, "Documentation by YARD #{YARD::VERSION}"
|
15
|
+
|
16
|
+
# @return [Verifier] the default verifier object to filter queries
|
17
|
+
default_attr :verifier, lambda { Verifier.new }
|
18
|
+
|
19
|
+
# @return [Serializers::Base] the default serializer for generating output
|
20
|
+
# to disk.
|
21
|
+
default_attr :serializer, lambda { Serializers::FileSystemSerializer.new }
|
22
|
+
|
23
|
+
# @return [Symbol] the default output format (:html).
|
24
|
+
default_attr :format, :html
|
25
|
+
|
26
|
+
# @return [Boolean] whether the data should be rendered in a single page,
|
27
|
+
# if the template supports it.
|
28
|
+
default_attr :onefile, false
|
29
|
+
|
30
|
+
# @return [CodeObjects::ExtraFileObject] the README file object rendered
|
31
|
+
# along with objects
|
32
|
+
attr_accessor :readme
|
33
|
+
|
34
|
+
# @return [Array<CodeObjects::Base>] the list of code objects to render
|
35
|
+
# the templates with.
|
36
|
+
attr_accessor :objects
|
37
|
+
|
38
|
+
# @return [Numeric] An index value for rendering sequentially related templates
|
39
|
+
attr_accessor :index
|
40
|
+
|
41
|
+
# @return [CodeObjects::Base] an extra item to send to a template that is not
|
42
|
+
# the main rendered object
|
43
|
+
attr_accessor :item
|
44
|
+
|
45
|
+
# @return [CodeObjects::ExtraFileObject] the file object being rendered.
|
46
|
+
# The +object+ key is not used so that a file may be rendered in the context
|
47
|
+
# of an object's namespace (for generating links).
|
48
|
+
attr_accessor :file
|
49
|
+
|
50
|
+
# @return [String] the current locale
|
51
|
+
attr_accessor :locale
|
52
|
+
end
|
53
|
+
|
54
|
+
# Yardoc is the default YARD CLI command (+yard doc+ and historic +yardoc+
|
55
|
+
# executable) used to generate and output (mainly) HTML documentation given
|
56
|
+
# a set of source files.
|
57
|
+
#
|
58
|
+
# == Usage
|
59
|
+
#
|
60
|
+
# Main usage for this command is:
|
61
|
+
#
|
62
|
+
# $ yardoc [options] [source_files [- extra_files]]
|
63
|
+
#
|
64
|
+
# See +yardoc --help+ for details on valid options.
|
65
|
+
#
|
66
|
+
# == Options File (+.yardopts+)
|
67
|
+
#
|
68
|
+
# If a +.yardopts+ file is found in the source directory being processed,
|
69
|
+
# YARD will use the contents of the file as arguments to the command,
|
70
|
+
# treating newlines as spaces. You can use shell-style quotations to
|
71
|
+
# group space delimited arguments, just like on the command line.
|
72
|
+
#
|
73
|
+
# A valid +.yardopts+ file might look like:
|
74
|
+
#
|
75
|
+
# --no-private
|
76
|
+
# --title "My Title"
|
77
|
+
# --exclude foo --exclude bar
|
78
|
+
# lib/**/*.erb
|
79
|
+
# lib/**/*.rb -
|
80
|
+
# HACKING.rdoc LEGAL COPYRIGHT
|
81
|
+
#
|
82
|
+
# Note that Yardoc also supports the legacy RDoc style +.document+ file,
|
83
|
+
# though this file can only specify source globs to parse, not options.
|
84
|
+
#
|
85
|
+
# == Queries (+--query+)
|
86
|
+
#
|
87
|
+
# Yardoc supports queries to select specific code objects for which to
|
88
|
+
# generate documentation. For example, you might want to generate
|
89
|
+
# documentation only for your public API. If you've documented your public
|
90
|
+
# methods with +@api public+, you can use the following query to select
|
91
|
+
# all of these objects:
|
92
|
+
#
|
93
|
+
# --query '@api.text == "public"'
|
94
|
+
#
|
95
|
+
# Note that the syntax for queries is mostly Ruby with a few syntactic
|
96
|
+
# simplifications for meta-data tags. See the {Verifier} class for an
|
97
|
+
# overview of this syntax.
|
98
|
+
#
|
99
|
+
# == Adding Custom Ad-Hoc Meta-data Tags (+--tag+)
|
100
|
+
#
|
101
|
+
# YARD allows specification of {file:docs/Tags.md meta-data tags}
|
102
|
+
# programmatically via the {YARD::Tags::Library} class, but often this is not
|
103
|
+
# practical for users writing documentation. To make adding custom tags
|
104
|
+
# easier, Yardoc has a few command-line switches for creating basic tags
|
105
|
+
# and displaying them in generated HTML output.
|
106
|
+
#
|
107
|
+
# To specify a custom tag to be displayed in output, use any of the
|
108
|
+
# following:
|
109
|
+
#
|
110
|
+
# * +--tag+ TAG:TITLE
|
111
|
+
# * +--name-tag+ TAG:TITLE
|
112
|
+
# * +--type-tag+ TAG:TITLE
|
113
|
+
# * +--type-name-tag+ TAG:TITLE
|
114
|
+
# * +--title-tag+ TAG:TITLE
|
115
|
+
#
|
116
|
+
# "TAG:TITLE" is of the form: name:"Display Title", for example:
|
117
|
+
#
|
118
|
+
# --tag overload:"Overloaded Method"
|
119
|
+
#
|
120
|
+
# See +yard help doc+ for a description of the various options.
|
121
|
+
#
|
122
|
+
# Tags added in this way are automatically displayed in output. To add
|
123
|
+
# a meta-data tag that does not show up in output, use +--hide-tag TAG+.
|
124
|
+
# Note that you can also use this option on existing tags to hide
|
125
|
+
# builtin tags, for instance.
|
126
|
+
#
|
127
|
+
# == Processed Data Storage (+.yardoc+ directory)
|
128
|
+
#
|
129
|
+
# When Yardoc parses a source directory, it creates a +.yardoc+ directory
|
130
|
+
# (by default, override with +-b+) at the root of the project. This directory
|
131
|
+
# contains marshal dumps for all raw object data in the source, so that
|
132
|
+
# you can access it later for various commands (+stats+, +graph+, etc.).
|
133
|
+
# This directory is also used as a cache for any future calls to +yardoc+
|
134
|
+
# so as to process only the files which have changed since the last call.
|
135
|
+
#
|
136
|
+
# When Yardoc uses the cache in subsequent calls to +yardoc+, methods
|
137
|
+
# or classes that have been deleted from source since the last parsing
|
138
|
+
# will not be erased from the cache (YARD never deletes objects). In such
|
139
|
+
# a case, you should wipe the cache and do a clean parsing of the source tree.
|
140
|
+
# You can do this by deleting the +.yardoc+ directory manually, or running
|
141
|
+
# Yardoc without +--use-cache+ (+-c+).
|
142
|
+
#
|
143
|
+
# @since 0.2.1
|
144
|
+
# @see Verifier
|
145
|
+
class Yardoc < YardoptsCommand
|
146
|
+
# @return [Hash] the hash of options passed to the template.
|
147
|
+
# @see Templates::Engine#render
|
148
|
+
attr_reader :options
|
149
|
+
|
150
|
+
# @return [Array<String>] list of Ruby source files to process
|
151
|
+
attr_accessor :files
|
152
|
+
|
153
|
+
# @return [Array<String>] list of excluded paths (regexp matches)
|
154
|
+
# @since 0.5.3
|
155
|
+
attr_accessor :excluded
|
156
|
+
|
157
|
+
# @return [Boolean] whether to use the existing yardoc db if the
|
158
|
+
# .yardoc already exists. Also makes use of file checksums to
|
159
|
+
# parse only changed files.
|
160
|
+
attr_accessor :use_cache
|
161
|
+
|
162
|
+
# @return [Boolean] whether objects should be serialized to .yardoc db
|
163
|
+
attr_accessor :save_yardoc
|
164
|
+
|
165
|
+
# @return [Boolean] whether to generate output
|
166
|
+
attr_accessor :generate
|
167
|
+
|
168
|
+
# @return [Boolean] whether to print a list of objects
|
169
|
+
# @since 0.5.5
|
170
|
+
attr_accessor :list
|
171
|
+
|
172
|
+
# Keep track of which visibilities are to be shown
|
173
|
+
# @return [Array<Symbol>] a list of visibilities
|
174
|
+
# @since 0.5.6
|
175
|
+
attr_accessor :visibilities
|
176
|
+
|
177
|
+
# Keep track of which APIs are to be shown
|
178
|
+
# @return [Array<String>] a list of APIs
|
179
|
+
# @since 0.8.1
|
180
|
+
attr_accessor :apis
|
181
|
+
|
182
|
+
# Keep track of which APIs are to be hidden
|
183
|
+
# @return [Array<String>] a list of APIs to be hidden
|
184
|
+
# @since 0.8.7
|
185
|
+
attr_accessor :hidden_apis
|
186
|
+
|
187
|
+
# @return [Array<Symbol>] a list of tags to hide from templates
|
188
|
+
# @since 0.6.0
|
189
|
+
attr_accessor :hidden_tags
|
190
|
+
|
191
|
+
# @return [Boolean] whether to print statistics after parsing
|
192
|
+
# @since 0.6.0
|
193
|
+
attr_accessor :statistics
|
194
|
+
|
195
|
+
# @return [Array<String>] a list of assets to copy after generation
|
196
|
+
# @since 0.6.0
|
197
|
+
attr_accessor :assets
|
198
|
+
|
199
|
+
# @return [Boolean] whether markup option was specified
|
200
|
+
# @since 0.7.0
|
201
|
+
attr_accessor :has_markup
|
202
|
+
|
203
|
+
# @return [Boolean] whether yard exits with error status code if a warning occurs
|
204
|
+
attr_accessor :fail_on_warning
|
205
|
+
|
206
|
+
# Creates a new instance of the commandline utility
|
207
|
+
def initialize
|
208
|
+
super
|
209
|
+
@options = YardocOptions.new
|
210
|
+
@options.reset_defaults
|
211
|
+
@visibilities = [:public]
|
212
|
+
@apis = []
|
213
|
+
@hidden_apis = []
|
214
|
+
@assets = {}
|
215
|
+
@excluded = []
|
216
|
+
@files = []
|
217
|
+
@hidden_tags = []
|
218
|
+
@use_cache = false
|
219
|
+
@generate = true
|
220
|
+
@statistics = true
|
221
|
+
@list = false
|
222
|
+
@save_yardoc = true
|
223
|
+
@has_markup = false
|
224
|
+
@fail_on_warning = false
|
225
|
+
|
226
|
+
if defined?(::Encoding) && ::Encoding.respond_to?(:default_external=)
|
227
|
+
utf8 = ::Encoding.find('utf-8')
|
228
|
+
|
229
|
+
::Encoding.default_external = utf8 unless ::Encoding.default_external == utf8
|
230
|
+
::Encoding.default_internal = utf8 unless ::Encoding.default_internal == utf8
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
def description
|
235
|
+
"Generates documentation"
|
236
|
+
end
|
237
|
+
|
238
|
+
# Runs the commandline utility, parsing arguments and generating
|
239
|
+
# output if set.
|
240
|
+
#
|
241
|
+
# @param [Array<String>] args the list of arguments. If the list only
|
242
|
+
# contains a single nil value, skip calling of {#parse_arguments}
|
243
|
+
# @return [void]
|
244
|
+
def run(*args)
|
245
|
+
log.show_progress = true
|
246
|
+
if args.empty? || !args.first.nil?
|
247
|
+
# fail early if arguments are not valid
|
248
|
+
return unless parse_arguments(*args)
|
249
|
+
end
|
250
|
+
|
251
|
+
checksums = nil
|
252
|
+
if use_cache
|
253
|
+
Registry.load
|
254
|
+
checksums = Registry.checksums.dup
|
255
|
+
end
|
256
|
+
|
257
|
+
if save_yardoc
|
258
|
+
Registry.lock_for_writing do
|
259
|
+
YARD.parse(files, excluded)
|
260
|
+
Registry.save(use_cache)
|
261
|
+
end
|
262
|
+
else
|
263
|
+
YARD.parse(files, excluded)
|
264
|
+
end
|
265
|
+
|
266
|
+
if generate
|
267
|
+
run_generate(checksums)
|
268
|
+
copy_assets
|
269
|
+
elsif list
|
270
|
+
print_list
|
271
|
+
end
|
272
|
+
|
273
|
+
if !list && statistics && log.level < Logger::ERROR
|
274
|
+
Registry.load_all
|
275
|
+
log.enter_level(Logger::ERROR) do
|
276
|
+
Stats.new(false).run(*args)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
abort if fail_on_warning && log.warned
|
281
|
+
|
282
|
+
true
|
283
|
+
ensure
|
284
|
+
log.show_progress = false
|
285
|
+
end
|
286
|
+
|
287
|
+
# Parses commandline arguments
|
288
|
+
# @param [Array<String>] args the list of arguments
|
289
|
+
# @return [Boolean] whether or not arguments are valid
|
290
|
+
# @since 0.5.6
|
291
|
+
def parse_arguments(*args)
|
292
|
+
super(*args)
|
293
|
+
|
294
|
+
# Last minute modifications
|
295
|
+
self.files = Parser::SourceParser::DEFAULT_PATH_GLOB if files.empty?
|
296
|
+
files.delete_if {|x| x =~ /\A\s*\Z/ } # remove empty ones
|
297
|
+
readme = Dir.glob('README{,*[^~]}').
|
298
|
+
sort_by {|r| [r.count('.'), r.index('.'), r] }.first
|
299
|
+
readme ||= Dir.glob(files.first).first if options.onefile && !files.empty?
|
300
|
+
options.readme ||= CodeObjects::ExtraFileObject.new(readme) if readme
|
301
|
+
options.files.unshift(options.readme).uniq! if options.readme
|
302
|
+
|
303
|
+
Tags::Library.visible_tags -= hidden_tags
|
304
|
+
add_visibility_verifier
|
305
|
+
add_api_verifier
|
306
|
+
|
307
|
+
apply_locale
|
308
|
+
|
309
|
+
# US-ASCII is invalid encoding for onefile
|
310
|
+
if defined?(::Encoding) && options.onefile
|
311
|
+
if ::Encoding.default_internal == ::Encoding::US_ASCII
|
312
|
+
log.warn "--one-file is not compatible with US-ASCII encoding, using ASCII-8BIT"
|
313
|
+
::Encoding.default_external, ::Encoding.default_internal = ['ascii-8bit'] * 2
|
314
|
+
end
|
315
|
+
end
|
316
|
+
|
317
|
+
if generate && !verify_markup_options
|
318
|
+
false
|
319
|
+
else
|
320
|
+
true
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
# The list of all objects to process. Override this method to change
|
325
|
+
# which objects YARD should generate documentation for.
|
326
|
+
#
|
327
|
+
# @deprecated To hide methods use the +@private+ tag instead.
|
328
|
+
# @return [Array<CodeObjects::Base>] a list of code objects to process
|
329
|
+
def all_objects
|
330
|
+
Registry.all(:root, :module, :class)
|
331
|
+
end
|
332
|
+
|
333
|
+
private
|
334
|
+
|
335
|
+
# Generates output for objects
|
336
|
+
# @param [Hash, nil] checksums if supplied, a list of checkums for files.
|
337
|
+
# @return [void]
|
338
|
+
# @since 0.5.1
|
339
|
+
def run_generate(checksums)
|
340
|
+
if checksums
|
341
|
+
changed_files = []
|
342
|
+
Registry.checksums.each do |file, hash|
|
343
|
+
changed_files << file if checksums[file] != hash
|
344
|
+
end
|
345
|
+
end
|
346
|
+
Registry.load_all if use_cache
|
347
|
+
objects = run_verifier(all_objects).reject do |object|
|
348
|
+
serialized = !options.serializer || options.serializer.exists?(object)
|
349
|
+
if checksums && serialized && !object.files.any? {|f, _line| changed_files.include?(f) }
|
350
|
+
true
|
351
|
+
else
|
352
|
+
log.debug "Re-generating object #{object.path}..."
|
353
|
+
false
|
354
|
+
end
|
355
|
+
end
|
356
|
+
Templates::Engine.generate(objects, options)
|
357
|
+
end
|
358
|
+
|
359
|
+
# Verifies that the markup options are valid before parsing any code.
|
360
|
+
# Failing early is better than failing late.
|
361
|
+
#
|
362
|
+
# @return (see YARD::Templates::Helpers::MarkupHelper#load_markup_provider)
|
363
|
+
def verify_markup_options
|
364
|
+
result = false
|
365
|
+
lvl = has_markup ? log.level : Logger::FATAL
|
366
|
+
obj = Struct.new(:options).new(options)
|
367
|
+
obj.extend(Templates::Helpers::MarkupHelper)
|
368
|
+
options.files.each do |file|
|
369
|
+
markup = file.attributes[:markup] || obj.markup_for_file('', file.filename)
|
370
|
+
result = obj.load_markup_provider(markup)
|
371
|
+
return false if !result && markup != :rdoc
|
372
|
+
end
|
373
|
+
options.markup = :rdoc unless has_markup
|
374
|
+
log.enter_level(lvl) { result = obj.load_markup_provider }
|
375
|
+
if !result && !has_markup
|
376
|
+
log.warn "Could not load default RDoc formatter, " \
|
377
|
+
"ignoring any markup (install RDoc to get default formatting)."
|
378
|
+
options.markup = :none
|
379
|
+
true
|
380
|
+
else
|
381
|
+
result
|
382
|
+
end
|
383
|
+
end
|
384
|
+
|
385
|
+
# Copies any assets to the output directory
|
386
|
+
# @return [void]
|
387
|
+
# @since 0.6.0
|
388
|
+
def copy_assets
|
389
|
+
return unless options.serializer
|
390
|
+
outpath = options.serializer.basepath
|
391
|
+
assets.each do |from, to|
|
392
|
+
to = File.join(outpath, to)
|
393
|
+
log.debug "Copying asset '#{from}' to '#{to}'"
|
394
|
+
from += '/.' if File.directory?(from)
|
395
|
+
FileUtils.cp_r(from, to)
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
# Prints a list of all objects
|
400
|
+
# @return [void]
|
401
|
+
# @since 0.5.5
|
402
|
+
def print_list
|
403
|
+
Registry.load_all
|
404
|
+
run_verifier(Registry.all).
|
405
|
+
sort_by {|item| [item.file || '', item.line || 0] }.each do |item|
|
406
|
+
log.puts "#{item.file}:#{item.line}: #{item.path}"
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
# Adds a set of extra documentation files to be processed
|
411
|
+
# @param [Array<String>] files the set of documentation files
|
412
|
+
def add_extra_files(*files)
|
413
|
+
files.map! {|f| f.include?("*") ? Dir.glob(f) : f }.flatten!
|
414
|
+
files.each do |file|
|
415
|
+
if extra_file_valid?(file)
|
416
|
+
options.files << CodeObjects::ExtraFileObject.new(file)
|
417
|
+
end
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
421
|
+
# @param file [String] the filename to validate
|
422
|
+
# @param check_exists [Boolean] whether the file should exist on disk
|
423
|
+
# @return [Boolean] whether the file is allowed to be used
|
424
|
+
def extra_file_valid?(file, check_exists = true)
|
425
|
+
if file =~ %r{^(?:\.\./|/)}
|
426
|
+
log.warn "Invalid file: #{file}"
|
427
|
+
false
|
428
|
+
elsif check_exists && !File.file?(file)
|
429
|
+
log.warn "Could not find file: #{file}"
|
430
|
+
false
|
431
|
+
else
|
432
|
+
true
|
433
|
+
end
|
434
|
+
end
|
435
|
+
|
436
|
+
# Parses the file arguments into Ruby files and extra files, which are
|
437
|
+
# separated by a '-' element.
|
438
|
+
#
|
439
|
+
# @example Parses a set of Ruby source files
|
440
|
+
# parse_files %w(file1 file2 file3)
|
441
|
+
# @example Parses a set of Ruby files with a separator and extra files
|
442
|
+
# parse_files %w(file1 file2 - extrafile1 extrafile2)
|
443
|
+
# @param [Array<String>] files the list of files to parse
|
444
|
+
# @return [void]
|
445
|
+
def parse_files(*files)
|
446
|
+
seen_extra_files_marker = false
|
447
|
+
|
448
|
+
files.each do |file|
|
449
|
+
if file == "-"
|
450
|
+
seen_extra_files_marker = true
|
451
|
+
next
|
452
|
+
end
|
453
|
+
|
454
|
+
if seen_extra_files_marker
|
455
|
+
add_extra_files(file)
|
456
|
+
else
|
457
|
+
self.files << file
|
458
|
+
end
|
459
|
+
end
|
460
|
+
end
|
461
|
+
|
462
|
+
# Adds verifier rule for visibilities
|
463
|
+
# @return [void]
|
464
|
+
# @since 0.5.6
|
465
|
+
def add_visibility_verifier
|
466
|
+
vis_expr = "#{visibilities.uniq.inspect}.include?(object.visibility)"
|
467
|
+
options.verifier.add_expressions(vis_expr)
|
468
|
+
end
|
469
|
+
|
470
|
+
# Adds verifier rule for APIs
|
471
|
+
# @return [void]
|
472
|
+
# @since 0.8.1
|
473
|
+
def add_api_verifier
|
474
|
+
no_api = true if apis.delete('')
|
475
|
+
exprs = []
|
476
|
+
|
477
|
+
exprs << "#{apis.uniq.inspect}.include?(@api.text)" unless apis.empty?
|
478
|
+
|
479
|
+
unless hidden_apis.empty?
|
480
|
+
exprs << "!#{hidden_apis.uniq.inspect}.include?(@api.text)"
|
481
|
+
end
|
482
|
+
|
483
|
+
exprs = !exprs.empty? ? [exprs.join(' && ')] : []
|
484
|
+
exprs << "!@api" if no_api
|
485
|
+
|
486
|
+
expr = exprs.join(' || ')
|
487
|
+
options.verifier.add_expressions(expr) unless expr.empty?
|
488
|
+
end
|
489
|
+
|
490
|
+
# Applies the specified locale to collected objects
|
491
|
+
# @return [void]
|
492
|
+
# @since 0.8.3
|
493
|
+
def apply_locale
|
494
|
+
YARD::I18n::Locale.default = options.locale
|
495
|
+
options.files.each do |file|
|
496
|
+
file.locale = options.locale
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
500
|
+
# (see Templates::Helpers::BaseHelper#run_verifier)
|
501
|
+
def run_verifier(list)
|
502
|
+
options.verifier ? options.verifier.run(list) : list
|
503
|
+
end
|
504
|
+
|
505
|
+
# @since 0.6.0
|
506
|
+
def add_tag(tag_data, factory_method = nil)
|
507
|
+
tag, title = *tag_data.split(':')
|
508
|
+
title ||= tag.capitalize
|
509
|
+
Tags::Library.define_tag(title, tag.to_sym, factory_method)
|
510
|
+
Tags::Library.visible_tags |= [tag.to_sym]
|
511
|
+
end
|
512
|
+
|
513
|
+
# Parses commandline options.
|
514
|
+
# @param [Array<String>] args each tokenized argument
|
515
|
+
def optparse(*args)
|
516
|
+
opts = OptionParser.new
|
517
|
+
opts.banner = "Usage: yard doc [options] [source_files [- extra_files]]"
|
518
|
+
|
519
|
+
opts.separator "(if a list of source files is omitted, "
|
520
|
+
opts.separator " {lib,app}/**/*.rb ext/**/*.{c,rb} is used.)"
|
521
|
+
opts.separator ""
|
522
|
+
opts.separator "Example: yardoc -o documentation/ - FAQ LICENSE"
|
523
|
+
opts.separator " The above example outputs documentation for files in"
|
524
|
+
opts.separator " lib/**/*.rb to documentation/ including the extra files"
|
525
|
+
opts.separator " FAQ and LICENSE."
|
526
|
+
opts.separator ""
|
527
|
+
opts.separator "A base set of options can be specified by adding a .yardopts"
|
528
|
+
opts.separator "file to your base path containing all extra options separated"
|
529
|
+
opts.separator "by whitespace."
|
530
|
+
|
531
|
+
general_options(opts)
|
532
|
+
output_options(opts)
|
533
|
+
tag_options(opts)
|
534
|
+
common_options(opts)
|
535
|
+
parse_options(opts, args)
|
536
|
+
parse_files(*args) unless args.empty?
|
537
|
+
end
|
538
|
+
|
539
|
+
# Adds general options
|
540
|
+
def general_options(opts)
|
541
|
+
opts.separator ""
|
542
|
+
opts.separator "General Options:"
|
543
|
+
|
544
|
+
opts.on('-b', '--db FILE', 'Use a specified .yardoc db to load from or save to',
|
545
|
+
' (defaults to .yardoc)') do |yfile|
|
546
|
+
YARD::Registry.yardoc_file = yfile
|
547
|
+
end
|
548
|
+
|
549
|
+
opts.on('--[no-]single-db', 'Whether code objects should be stored to single',
|
550
|
+
' database file (advanced)') do |use_single_db|
|
551
|
+
Registry.single_object_db = use_single_db
|
552
|
+
end
|
553
|
+
|
554
|
+
opts.on('-n', '--no-output', 'Only generate .yardoc database, no documentation.') do
|
555
|
+
self.generate = false
|
556
|
+
end
|
557
|
+
|
558
|
+
opts.on('-c', '--use-cache [FILE]',
|
559
|
+
"Use the cached .yardoc db to generate documentation.",
|
560
|
+
" (defaults to no cache)") do |file|
|
561
|
+
YARD::Registry.yardoc_file = file if file
|
562
|
+
self.use_cache = true
|
563
|
+
end
|
564
|
+
|
565
|
+
opts.on('--no-cache', "Clear .yardoc db before parsing source.") do
|
566
|
+
self.use_cache = false
|
567
|
+
end
|
568
|
+
|
569
|
+
yardopts_options(opts)
|
570
|
+
|
571
|
+
opts.on('--no-save', 'Do not save the parsed data to the yardoc db') do
|
572
|
+
self.save_yardoc = false
|
573
|
+
end
|
574
|
+
|
575
|
+
opts.on('--exclude REGEXP', 'Ignores a file if it matches path match (regexp)') do |path|
|
576
|
+
excluded << path
|
577
|
+
end
|
578
|
+
|
579
|
+
opts.on('--fail-on-warning', 'Exit with error status code if a warning occurs') do
|
580
|
+
self.fail_on_warning = true
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
584
|
+
# Adds output options
|
585
|
+
def output_options(opts)
|
586
|
+
opts.separator ""
|
587
|
+
opts.separator "Output options:"
|
588
|
+
|
589
|
+
opts.on('--one-file', 'Generates output as a single file') do
|
590
|
+
options.onefile = true
|
591
|
+
end
|
592
|
+
|
593
|
+
opts.on('--list', 'List objects to standard out (implies -n)') do |_format|
|
594
|
+
self.generate = false
|
595
|
+
self.list = true
|
596
|
+
end
|
597
|
+
|
598
|
+
opts.on('--no-public', "Don't show public methods. (default shows public)") do
|
599
|
+
visibilities.delete(:public)
|
600
|
+
end
|
601
|
+
|
602
|
+
opts.on('--protected', "Show protected methods. (default hides protected)") do
|
603
|
+
visibilities.push(:protected)
|
604
|
+
end
|
605
|
+
|
606
|
+
opts.on('--private', "Show private methods. (default hides private)") do
|
607
|
+
visibilities.push(:private)
|
608
|
+
end
|
609
|
+
|
610
|
+
opts.on('--no-private', "Hide objects with @private tag") do
|
611
|
+
options.verifier.add_expressions '!object.tag(:private) &&
|
612
|
+
(object.namespace.is_a?(CodeObjects::Proxy) || !object.namespace.tag(:private))'
|
613
|
+
end
|
614
|
+
|
615
|
+
opts.on('--[no-]api API', 'Generates documentation for a given API',
|
616
|
+
'(objects which define the correct @api tag).',
|
617
|
+
'If --no-api is given, displays objects with',
|
618
|
+
'no @api tag.') do |api|
|
619
|
+
api = '' if api == false
|
620
|
+
apis.push(api)
|
621
|
+
end
|
622
|
+
|
623
|
+
opts.on('--hide-api API', 'Hides given @api tag from documentation') do |api|
|
624
|
+
hidden_apis.push(api)
|
625
|
+
end
|
626
|
+
|
627
|
+
opts.on('--embed-mixins', "Embeds mixin methods into class documentation") do
|
628
|
+
options.embed_mixins << '*'
|
629
|
+
end
|
630
|
+
|
631
|
+
opts.on('--embed-mixin [MODULE]', "Embeds mixin methods from a particular",
|
632
|
+
" module into class documentation") do |mod|
|
633
|
+
options.embed_mixins << mod
|
634
|
+
end
|
635
|
+
|
636
|
+
opts.on('--no-highlight', "Don't highlight code blocks in output.") do
|
637
|
+
options.highlight = false
|
638
|
+
end
|
639
|
+
|
640
|
+
opts.on('--default-return TYPE', "Shown if method has no return type. ",
|
641
|
+
" (defaults to 'Object')") do |type|
|
642
|
+
options.default_return = type
|
643
|
+
end
|
644
|
+
|
645
|
+
opts.on('--hide-void-return', "Hides return types specified as 'void'. ",
|
646
|
+
" (default is shown)") do
|
647
|
+
options.hide_void_return = true
|
648
|
+
end
|
649
|
+
|
650
|
+
opts.on('--query QUERY', "Only show objects that match a specific query") do |query|
|
651
|
+
next if YARD::Config.options[:safe_mode]
|
652
|
+
options.verifier.add_expressions(query.taint)
|
653
|
+
end
|
654
|
+
|
655
|
+
opts.on('--title TITLE', 'Add a specific title to HTML documents') do |title|
|
656
|
+
options.title = title
|
657
|
+
end
|
658
|
+
|
659
|
+
opts.on('-r', '--readme FILE', '--main FILE', 'The readme file used as the title page',
|
660
|
+
' of documentation.') do |readme|
|
661
|
+
if extra_file_valid?(readme)
|
662
|
+
options.readme = CodeObjects::ExtraFileObject.new(readme)
|
663
|
+
end
|
664
|
+
end
|
665
|
+
|
666
|
+
opts.on('--files FILE1,FILE2,...', 'Any extra comma separated static files to be ',
|
667
|
+
' included (eg. FAQ)') do |files|
|
668
|
+
add_extra_files(*files.split(","))
|
669
|
+
end
|
670
|
+
|
671
|
+
opts.on('--asset FROM[:TO]', 'A file or directory to copy over to output ',
|
672
|
+
' directory after generating') do |asset|
|
673
|
+
from, to = *asset.split(':').map {|f| File.cleanpath(f, true) }
|
674
|
+
to ||= from
|
675
|
+
if extra_file_valid?(from, false) && extra_file_valid?(to, false)
|
676
|
+
assets[from] = to
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
680
|
+
opts.on('-o', '--output-dir PATH',
|
681
|
+
'The output directory. (defaults to ./doc)') do |dir|
|
682
|
+
options.serializer.basepath = dir
|
683
|
+
end
|
684
|
+
|
685
|
+
opts.on('-m', '--markup MARKUP',
|
686
|
+
'Markup style used in documentation, like textile, ',
|
687
|
+
' markdown or rdoc. (defaults to rdoc)') do |markup|
|
688
|
+
self.has_markup = true
|
689
|
+
options.markup = markup.to_sym
|
690
|
+
end
|
691
|
+
|
692
|
+
opts.on('-M', '--markup-provider MARKUP_PROVIDER',
|
693
|
+
'Overrides the library used to process markup ',
|
694
|
+
' formatting (specify the gem name)') do |markup_provider|
|
695
|
+
options.markup_provider = markup_provider.to_sym
|
696
|
+
end
|
697
|
+
|
698
|
+
opts.on('--charset ENC', 'Character set to use when parsing files ',
|
699
|
+
' (default is system locale)') do |encoding|
|
700
|
+
begin
|
701
|
+
if defined?(Encoding) && Encoding.respond_to?(:default_external=)
|
702
|
+
Encoding.default_external = encoding
|
703
|
+
Encoding.default_internal = encoding
|
704
|
+
end
|
705
|
+
rescue ArgumentError => e
|
706
|
+
raise OptionParser::InvalidOption, e
|
707
|
+
end
|
708
|
+
end
|
709
|
+
|
710
|
+
opts.on('-t', '--template TEMPLATE',
|
711
|
+
'The template to use. (defaults to "default")') do |template|
|
712
|
+
options.template = template.to_sym
|
713
|
+
end
|
714
|
+
|
715
|
+
opts.on('-p', '--template-path PATH',
|
716
|
+
'The template path to look for templates in.',
|
717
|
+
' (used with -t).') do |path|
|
718
|
+
next if YARD::Config.options[:safe_mode]
|
719
|
+
YARD::Templates::Engine.register_template_path(File.expand_path(path))
|
720
|
+
end
|
721
|
+
|
722
|
+
opts.on('-f', '--format FORMAT',
|
723
|
+
'The output format for the template.',
|
724
|
+
' (defaults to html)') do |format|
|
725
|
+
options.format = format.to_sym
|
726
|
+
end
|
727
|
+
|
728
|
+
opts.on('--no-stats', 'Don\'t print statistics') do
|
729
|
+
self.statistics = false
|
730
|
+
end
|
731
|
+
|
732
|
+
opts.on('--no-progress', 'Don\'t show progress bar') do
|
733
|
+
log.show_progress = false
|
734
|
+
end
|
735
|
+
|
736
|
+
opts.on('--locale LOCALE',
|
737
|
+
'The locale for generated documentation.',
|
738
|
+
' (defaults to en)') do |locale|
|
739
|
+
options.locale = locale
|
740
|
+
end
|
741
|
+
|
742
|
+
opts.on('--po-dir DIR',
|
743
|
+
'The directory that has .po files.',
|
744
|
+
" (defaults to #{YARD::Registry.po_dir})") do |dir|
|
745
|
+
YARD::Registry.po_dir = dir
|
746
|
+
end
|
747
|
+
end
|
748
|
+
|
749
|
+
# Adds tag options
|
750
|
+
# @since 0.6.0
|
751
|
+
def tag_options(opts)
|
752
|
+
opts.separator ""
|
753
|
+
opts.separator "Tag options: (TAG:TITLE looks like: 'overload:Overloaded Method')"
|
754
|
+
|
755
|
+
opts.on('--tag TAG:TITLE', 'Registers a new free-form metadata @tag') do |tag|
|
756
|
+
add_tag(tag)
|
757
|
+
end
|
758
|
+
|
759
|
+
opts.on('--type-tag TAG:TITLE', 'Tag with an optional types field') do |tag|
|
760
|
+
add_tag(tag, :with_types)
|
761
|
+
end
|
762
|
+
|
763
|
+
opts.on('--type-name-tag TAG:TITLE', 'Tag with optional types and a name field') do |tag|
|
764
|
+
add_tag(tag, :with_types_and_name)
|
765
|
+
end
|
766
|
+
|
767
|
+
opts.on('--name-tag TAG:TITLE', 'Tag with a name field') do |tag|
|
768
|
+
add_tag(tag, :with_name)
|
769
|
+
end
|
770
|
+
|
771
|
+
opts.on('--title-tag TAG:TITLE', 'Tag with first line as title field') do |tag|
|
772
|
+
add_tag(tag, :with_title_and_text)
|
773
|
+
end
|
774
|
+
|
775
|
+
opts.on('--hide-tag TAG', 'Hides a previously defined tag from templates') do |tag|
|
776
|
+
self.hidden_tags |= [tag.to_sym]
|
777
|
+
end
|
778
|
+
|
779
|
+
opts.on('--transitive-tag TAG', 'Marks a tag as transitive') do |tag|
|
780
|
+
Tags::Library.transitive_tags |= [tag.to_sym]
|
781
|
+
end
|
782
|
+
|
783
|
+
opts.on('--non-transitive-tag TAG', 'Marks a tag as not transitive') do |tag|
|
784
|
+
Tags::Library.transitive_tags -= [tag.to_sym]
|
785
|
+
end
|
786
|
+
end
|
787
|
+
end
|
788
|
+
end
|
789
|
+
end
|