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,146 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
register_separator NSEP, :class
|
4
|
+
|
5
|
+
# A ClassObject represents a Ruby class in source code. It is a {ModuleObject}
|
6
|
+
# with extra inheritance semantics through the superclass.
|
7
|
+
class ClassObject < NamespaceObject
|
8
|
+
# The {ClassObject} that this class object inherits from in Ruby source.
|
9
|
+
# @return [ClassObject] a class object that is the superclass of this one
|
10
|
+
attr_reader :superclass
|
11
|
+
|
12
|
+
# Creates a new class object in +namespace+ with +name+
|
13
|
+
#
|
14
|
+
# @see Base.new
|
15
|
+
def initialize(namespace, name, *args, &block)
|
16
|
+
super
|
17
|
+
|
18
|
+
if is_exception?
|
19
|
+
self.superclass ||= "::Exception" unless P(namespace, name) == P(:Exception)
|
20
|
+
else
|
21
|
+
case P(namespace, name).path
|
22
|
+
when "BasicObject"
|
23
|
+
nil
|
24
|
+
when "Object"
|
25
|
+
self.superclass ||= "::BasicObject"
|
26
|
+
else
|
27
|
+
self.superclass ||= "::Object"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# Whether or not the class is a Ruby Exception
|
33
|
+
#
|
34
|
+
# @return [Boolean] whether the object represents a Ruby exception
|
35
|
+
def is_exception?
|
36
|
+
inheritance_tree.reverse.any? {|o| BUILTIN_EXCEPTIONS_HASH.key? o.path }
|
37
|
+
end
|
38
|
+
|
39
|
+
# Returns the inheritance tree of the object including self.
|
40
|
+
#
|
41
|
+
# @param [Boolean] include_mods whether or not to include mixins in the
|
42
|
+
# inheritance tree.
|
43
|
+
# @return [Array<NamespaceObject>] the list of code objects that make up
|
44
|
+
# the inheritance tree.
|
45
|
+
def inheritance_tree(include_mods = false)
|
46
|
+
list = (include_mods ? mixins(:instance, :class) : [])
|
47
|
+
if superclass.is_a?(Proxy) || superclass.respond_to?(:inheritance_tree)
|
48
|
+
list += [superclass] unless superclass == P(:Object) || superclass == P(:BasicObject)
|
49
|
+
end
|
50
|
+
[self] + list.map do |m|
|
51
|
+
next m if m == self
|
52
|
+
next m unless m.respond_to?(:inheritance_tree)
|
53
|
+
m.inheritance_tree(include_mods)
|
54
|
+
end.flatten.uniq
|
55
|
+
end
|
56
|
+
|
57
|
+
# Returns the list of methods matching the options hash. Returns
|
58
|
+
# all methods if hash is empty.
|
59
|
+
#
|
60
|
+
# @param [Hash] opts the options hash to match
|
61
|
+
# @option opts [Boolean] :inherited (true) whether inherited methods should be
|
62
|
+
# included in the list
|
63
|
+
# @option opts [Boolean] :included (true) whether mixed in methods should be
|
64
|
+
# included in the list
|
65
|
+
# @return [Array<MethodObject>] the list of methods that matched
|
66
|
+
def meths(opts = {})
|
67
|
+
opts = SymbolHash[:inherited => true].update(opts)
|
68
|
+
list = super(opts)
|
69
|
+
list += inherited_meths(opts).reject do |o|
|
70
|
+
next(false) if opts[:all]
|
71
|
+
list.find {|o2| o2.name == o.name && o2.scope == o.scope }
|
72
|
+
end if opts[:inherited]
|
73
|
+
list
|
74
|
+
end
|
75
|
+
|
76
|
+
# Returns only the methods that were inherited.
|
77
|
+
#
|
78
|
+
# @return [Array<MethodObject>] the list of inherited method objects
|
79
|
+
def inherited_meths(opts = {})
|
80
|
+
inheritance_tree[1..-1].inject([]) do |list, superclass|
|
81
|
+
if superclass.is_a?(Proxy)
|
82
|
+
list
|
83
|
+
else
|
84
|
+
list += superclass.meths(opts).reject do |o|
|
85
|
+
next(false) if opts[:all]
|
86
|
+
child(:name => o.name, :scope => o.scope) ||
|
87
|
+
list.find {|o2| o2.name == o.name && o2.scope == o.scope }
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# Returns the list of constants matching the options hash.
|
94
|
+
#
|
95
|
+
# @param [Hash] opts the options hash to match
|
96
|
+
# @option opts [Boolean] :inherited (true) whether inherited constant should be
|
97
|
+
# included in the list
|
98
|
+
# @option opts [Boolean] :included (true) whether mixed in constant should be
|
99
|
+
# included in the list
|
100
|
+
# @return [Array<ConstantObject>] the list of constant that matched
|
101
|
+
def constants(opts = {})
|
102
|
+
opts = SymbolHash[:inherited => true].update(opts)
|
103
|
+
super(opts) + (opts[:inherited] ? inherited_constants : [])
|
104
|
+
end
|
105
|
+
|
106
|
+
# Returns only the constants that were inherited.
|
107
|
+
#
|
108
|
+
# @return [Array<ConstantObject>] the list of inherited constant objects
|
109
|
+
def inherited_constants
|
110
|
+
inheritance_tree[1..-1].inject([]) do |list, superclass|
|
111
|
+
if superclass.is_a?(Proxy)
|
112
|
+
list
|
113
|
+
else
|
114
|
+
list += superclass.constants.reject do |o|
|
115
|
+
child(:name => o.name) || list.find {|o2| o2.name == o.name }
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
# Sets the superclass of the object
|
122
|
+
#
|
123
|
+
# @param [Base, Proxy, String, Symbol, nil] object the superclass value
|
124
|
+
# @return [void]
|
125
|
+
def superclass=(object)
|
126
|
+
case object
|
127
|
+
when Base, Proxy, NilClass
|
128
|
+
@superclass = object
|
129
|
+
when String, Symbol
|
130
|
+
@superclass = Proxy.new(namespace, object)
|
131
|
+
else
|
132
|
+
raise ArgumentError, "superclass must be CodeObject, Proxy, String or Symbol"
|
133
|
+
end
|
134
|
+
|
135
|
+
if name == @superclass.name && namespace != YARD::Registry.root && !object.is_a?(Base)
|
136
|
+
@superclass = Proxy.new(namespace.namespace, object)
|
137
|
+
end
|
138
|
+
|
139
|
+
if @superclass == self
|
140
|
+
msg = "superclass #{@superclass.inspect} cannot be the same as the declared class #{inspect}"
|
141
|
+
@superclass = P("::Object")
|
142
|
+
raise ArgumentError, msg
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
register_separator NSEP, :class_variable
|
4
|
+
|
5
|
+
# Represents a class variable inside a namespace. The path is expressed
|
6
|
+
# in the form "A::B::@@classvariable"
|
7
|
+
class ClassVariableObject < Base
|
8
|
+
# @return [String] the class variable's value
|
9
|
+
attr_accessor :value
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
register_separator NSEP, :constant
|
4
|
+
|
5
|
+
# A +ConstantObject+ represents a Ruby constant (not a module or class).
|
6
|
+
# To access the constant's (source code) value, use {#value}.
|
7
|
+
class ConstantObject < Base
|
8
|
+
# The source code representing the constant's value
|
9
|
+
# @return [String] the value the constant is set to
|
10
|
+
attr_reader :value
|
11
|
+
|
12
|
+
def value=(value)
|
13
|
+
@value = format_source(value)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
# Represents an instance method of a module that was mixed into the class
|
4
|
+
# scope of another namespace.
|
5
|
+
#
|
6
|
+
# @see MethodObject
|
7
|
+
class ExtendedMethodObject
|
8
|
+
instance_methods.each {|m| undef_method(m) unless m =~ /^__/ || m.to_sym == :object_id }
|
9
|
+
|
10
|
+
# @return [Symbol] always +:class+
|
11
|
+
def scope; :class end
|
12
|
+
|
13
|
+
# Sets up a delegate for {MethodObject} obj.
|
14
|
+
#
|
15
|
+
# @param [MethodObject] obj the instance method to treat as a mixed in
|
16
|
+
# class method on another namespace.
|
17
|
+
def initialize(obj) @del = obj end
|
18
|
+
|
19
|
+
# Sends all methods to the {MethodObject} assigned in {#initialize}
|
20
|
+
# @see #initialize
|
21
|
+
# @see MethodObject
|
22
|
+
def method_missing(sym, *args, &block) @del.__send__(sym, *args, &block) end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,134 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
# An ExtraFileObject represents an extra documentation file (README or other
|
4
|
+
# file). It is not strictly a CodeObject (does not inherit from `Base`) although
|
5
|
+
# it implements `path`, `name` and `type`, and therefore should be structurally
|
6
|
+
# compatible with most CodeObject interfaces.
|
7
|
+
class ExtraFileObject
|
8
|
+
attr_accessor :filename
|
9
|
+
attr_writer :attributes
|
10
|
+
attr_accessor :name
|
11
|
+
# @since 0.8.3
|
12
|
+
attr_reader :locale
|
13
|
+
|
14
|
+
# Creates a new extra file object.
|
15
|
+
# @param [String] filename the location on disk of the file
|
16
|
+
# @param [String] contents the file contents. If not set, the contents
|
17
|
+
# will be read from disk using the +filename+.
|
18
|
+
def initialize(filename, contents = nil)
|
19
|
+
self.filename = filename
|
20
|
+
self.name = File.basename(filename).gsub(/\.[^.]+$/, '')
|
21
|
+
self.attributes = SymbolHash.new(false)
|
22
|
+
@original_contents = contents
|
23
|
+
@parsed = false
|
24
|
+
@locale = nil
|
25
|
+
ensure_parsed
|
26
|
+
end
|
27
|
+
|
28
|
+
alias path name
|
29
|
+
|
30
|
+
def attributes
|
31
|
+
ensure_parsed
|
32
|
+
@attributes
|
33
|
+
end
|
34
|
+
|
35
|
+
def title
|
36
|
+
attributes[:title] || name
|
37
|
+
end
|
38
|
+
|
39
|
+
def contents
|
40
|
+
ensure_parsed
|
41
|
+
@contents
|
42
|
+
end
|
43
|
+
|
44
|
+
def contents=(contents)
|
45
|
+
@original_contents = contents
|
46
|
+
@parsed = false
|
47
|
+
end
|
48
|
+
|
49
|
+
# @param [String] locale the locale name to be translated.
|
50
|
+
# @return [void]
|
51
|
+
# @since 0.8.3
|
52
|
+
def locale=(locale)
|
53
|
+
@locale = locale
|
54
|
+
@parsed = false
|
55
|
+
end
|
56
|
+
|
57
|
+
def inspect
|
58
|
+
"#<yardoc #{type} #{filename} attrs=#{attributes.inspect}>"
|
59
|
+
end
|
60
|
+
alias to_s inspect
|
61
|
+
|
62
|
+
def type; :extra_file end
|
63
|
+
|
64
|
+
def ==(other)
|
65
|
+
return false unless self.class === other
|
66
|
+
other.filename == filename
|
67
|
+
end
|
68
|
+
alias eql? ==
|
69
|
+
alias equal? ==
|
70
|
+
def hash; filename.hash end
|
71
|
+
|
72
|
+
private
|
73
|
+
|
74
|
+
def ensure_parsed
|
75
|
+
return if @parsed
|
76
|
+
@parsed = true
|
77
|
+
@contents = parse_contents(@original_contents || File.read(@filename))
|
78
|
+
end
|
79
|
+
|
80
|
+
# @param [String] data the file contents
|
81
|
+
def parse_contents(data)
|
82
|
+
retried = false
|
83
|
+
cut_index = 0
|
84
|
+
data = translate(data)
|
85
|
+
data = data.split("\n")
|
86
|
+
data.each_with_index do |line, index|
|
87
|
+
case line
|
88
|
+
when /^#!(\S+)\s*$/
|
89
|
+
if index == 0
|
90
|
+
attributes[:markup] = $1
|
91
|
+
else
|
92
|
+
cut_index = index
|
93
|
+
break
|
94
|
+
end
|
95
|
+
when /^\s*#\s*@(\S+)\s*(.+?)\s*$/
|
96
|
+
attributes[$1] = $2
|
97
|
+
when /^\s*<!--\s*$/, /^\s*-->\s*$/
|
98
|
+
# Ignore HTML comments
|
99
|
+
else
|
100
|
+
cut_index = index
|
101
|
+
break
|
102
|
+
end
|
103
|
+
end
|
104
|
+
data = data[cut_index..-1] if cut_index > 0
|
105
|
+
contents = data.join("\n")
|
106
|
+
|
107
|
+
if contents.respond_to?(:force_encoding) && attributes[:encoding]
|
108
|
+
begin
|
109
|
+
contents.force_encoding(attributes[:encoding])
|
110
|
+
rescue ArgumentError
|
111
|
+
log.warn "Invalid encoding `#{attributes[:encoding]}' in #{filename}"
|
112
|
+
end
|
113
|
+
end
|
114
|
+
contents
|
115
|
+
rescue ArgumentError => e
|
116
|
+
raise unless e.message =~ /invalid byte sequence/
|
117
|
+
|
118
|
+
if retried
|
119
|
+
# This should never happen.
|
120
|
+
log.warn "Could not read #{filename}, #{e.message}. You probably want to set `--charset`."
|
121
|
+
return ''
|
122
|
+
else
|
123
|
+
data.force_encoding('binary') if data.respond_to?(:force_encoding)
|
124
|
+
retried = true
|
125
|
+
retry
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
def translate(data)
|
130
|
+
text = YARD::I18n::Text.new(data, :have_header => true)
|
131
|
+
text.translate(YARD::Registry.locale(locale))
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
@@ -0,0 +1,172 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'ostruct'
|
3
|
+
|
4
|
+
module YARD
|
5
|
+
module CodeObjects
|
6
|
+
# A MacroObject represents a docstring defined through +@!macro NAME+ and can be
|
7
|
+
# reused by specifying the tag +@!macro NAME+. You can also provide the
|
8
|
+
# +attached+ type flag to the macro definition to have it attached to the
|
9
|
+
# specific DSL method so it will be implicitly reused.
|
10
|
+
#
|
11
|
+
# Macros are fully described in the {file:docs/Tags.md#macro Tags Overview}
|
12
|
+
# document.
|
13
|
+
#
|
14
|
+
# @example Creating a basic named macro
|
15
|
+
# # @!macro prop
|
16
|
+
# # @!method $1(${3-})
|
17
|
+
# # @return [$2] the value of the $0
|
18
|
+
# property :foo, String, :a, :b
|
19
|
+
#
|
20
|
+
# # @!macro prop
|
21
|
+
# property :bar, Numeric, :value
|
22
|
+
#
|
23
|
+
# @example Creating a macro that is attached to the method call
|
24
|
+
# # @!macro [attach] prop2
|
25
|
+
# # @!method $1(value)
|
26
|
+
# property :foo
|
27
|
+
#
|
28
|
+
# # Extra data added to docstring
|
29
|
+
# property :bar
|
30
|
+
class MacroObject < Base
|
31
|
+
MACRO_MATCH = /(\\)?\$(?:\{(-?\d+|\*)(-)?(-?\d+)?\}|(-?\d+|\*))/
|
32
|
+
|
33
|
+
class << self
|
34
|
+
# Creates a new macro and fills in the relevant properties.
|
35
|
+
# @param [String] macro_name the name of the macro, must be unique.
|
36
|
+
# @param [String] data the data the macro should expand when re-used
|
37
|
+
# @param [CodeObjects::Base] method_object an object to attach this
|
38
|
+
# macro to. If supplied, {#attached?} will be true
|
39
|
+
# @return [MacroObject] the newly created object
|
40
|
+
def create(macro_name, data, method_object = nil)
|
41
|
+
obj = new(:root, macro_name)
|
42
|
+
obj.macro_data = data
|
43
|
+
obj.method_object = method_object
|
44
|
+
obj
|
45
|
+
end
|
46
|
+
|
47
|
+
# Finds a macro using +macro_name+
|
48
|
+
# @param [#to_s] macro_name the name of the macro
|
49
|
+
# @return [MacroObject] if a macro is found
|
50
|
+
# @return [nil] if there is no registered macro by that name
|
51
|
+
def find(macro_name)
|
52
|
+
Registry.at('.macro.' + macro_name.to_s)
|
53
|
+
end
|
54
|
+
|
55
|
+
# Parses a given docstring and determines if the macro is "new" or
|
56
|
+
# not. If the macro has $variable names or if it has a @!macro tag
|
57
|
+
# with the [new] or [attached] flag, it is considered new.
|
58
|
+
#
|
59
|
+
# If a new macro is found, the macro is created and registered. Otherwise
|
60
|
+
# the macro name is searched and returned. If a macro is not found,
|
61
|
+
# nil is returned.
|
62
|
+
#
|
63
|
+
# @param [#to_s] macro_name the name of the macro
|
64
|
+
# @param [CodeObjects::Base] method_object an optional method to attach
|
65
|
+
# the macro to. Only used if the macro is being created, otherwise
|
66
|
+
# this argument is ignored.
|
67
|
+
# @return [MacroObject] the newly created or existing macro, depending
|
68
|
+
# on whether the @!macro tag was a new tag or not.
|
69
|
+
# @return [nil] if the +data+ has no macro tag or if the macro is
|
70
|
+
# not new and no macro by the macro name is found.
|
71
|
+
def find_or_create(macro_name, data, method_object = nil)
|
72
|
+
find(name) || create(macro_name, data, method_object)
|
73
|
+
end
|
74
|
+
alias create_docstring find_or_create
|
75
|
+
|
76
|
+
# Expands +macro_data+ using the interpolation parameters.
|
77
|
+
#
|
78
|
+
# Interpolation rules:
|
79
|
+
# * $0, $1, $2, ... = the Nth parameter in +call_params+
|
80
|
+
# * $* = the full statement source (excluding block)
|
81
|
+
# * Also supports $!{N-M} ranges, as well as negative indexes on N or M
|
82
|
+
# * Use \$ to escape the variable name in a macro.
|
83
|
+
#
|
84
|
+
# @!macro [new] macro.expand
|
85
|
+
# @param [Array<String>] call_params the method name and parameters
|
86
|
+
# to the method call. These arguments will fill \$0-N
|
87
|
+
# @param [String] full_source the full source line (excluding block)
|
88
|
+
# interpolated as \$*
|
89
|
+
# @param [String] block_source Currently unused. Will support
|
90
|
+
# interpolating the block data as a variable.
|
91
|
+
# @return [String] the expanded macro data
|
92
|
+
# @param [String] macro_data the macro data to expand (taken from {#macro_data})
|
93
|
+
def expand(macro_data, call_params = [], full_source = '', block_source = '') # rubocop:disable Lint/UnusedMethodArgument
|
94
|
+
macro_data = macro_data.all if macro_data.is_a?(Docstring)
|
95
|
+
macro_data.gsub(MACRO_MATCH) do
|
96
|
+
escape = $1
|
97
|
+
first = $2 || $5
|
98
|
+
last = $4
|
99
|
+
rng = $3 ? true : false
|
100
|
+
next $&[1..-1] if escape
|
101
|
+
if first == '*'
|
102
|
+
last ? $& : full_source
|
103
|
+
else
|
104
|
+
first_i = first.to_i
|
105
|
+
last_i = (last ? last.to_i : call_params.size)
|
106
|
+
last_i = first_i unless rng
|
107
|
+
params = call_params[first_i..last_i]
|
108
|
+
params ? params.join(", ") : ''
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
# Applies a macro on a docstring by creating any macro data inside of
|
114
|
+
# the docstring first. Equivalent to calling {find_or_create} and {apply_macro}
|
115
|
+
# on the new macro object.
|
116
|
+
#
|
117
|
+
# @param [Docstring] docstring the docstring to create a macro out of
|
118
|
+
# @!macro macro.expand
|
119
|
+
# @see find_or_create
|
120
|
+
def apply(docstring, call_params = [], full_source = '', block_source = '', _method_object = nil) # rubocop:disable Lint/UnusedMethodArgument
|
121
|
+
docstring = docstring.all if Docstring === docstring
|
122
|
+
parser = Docstring.parser
|
123
|
+
handler = OpenStruct.new
|
124
|
+
handler.call_params = call_params[1..-1]
|
125
|
+
handler.caller_method = call_params.first
|
126
|
+
handler.statement = OpenStruct.new(:source => full_source)
|
127
|
+
parser.parse(docstring, nil, handler).to_docstring.to_raw
|
128
|
+
end
|
129
|
+
|
130
|
+
# Applies a macro to a docstring, interpolating the macro's data on the
|
131
|
+
# docstring and appending any extra local docstring data that was in
|
132
|
+
# the original +docstring+ object.
|
133
|
+
#
|
134
|
+
# @param [MacroObject] macro the macro object
|
135
|
+
# @!macro macro.expand
|
136
|
+
def apply_macro(macro, docstring, call_params = [], full_source = '', block_source = '') # rubocop:disable Lint/UnusedMethodArgument
|
137
|
+
apply(docstring, call_params, full_source, block_source)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# @return [String] the macro data stored on the object
|
142
|
+
attr_accessor :macro_data
|
143
|
+
|
144
|
+
# @return [CodeObjects::Base] the method object that this macro is
|
145
|
+
# attached to.
|
146
|
+
attr_accessor :method_object
|
147
|
+
|
148
|
+
# @return [Boolean] whether this macro is attached to a method
|
149
|
+
def attached?; method_object ? true : false end
|
150
|
+
|
151
|
+
# Overrides {Base#path} so the macro path is ".macro.MACRONAME"
|
152
|
+
def path; '.macro.' + name.to_s end
|
153
|
+
|
154
|
+
# Overrides the separator to be '.'
|
155
|
+
def sep; '.' end
|
156
|
+
|
157
|
+
# Expands the macro using
|
158
|
+
# @param [Array<String>] call_params a list of tokens that are passed
|
159
|
+
# to the method call
|
160
|
+
# @param [String] full_source the full method call (not including the block)
|
161
|
+
# @param [String] block_source the source passed in the block of the method
|
162
|
+
# call, if there is a block.
|
163
|
+
# @example Expanding a Macro
|
164
|
+
# macro.expand(%w(property foo bar), 'property :foo, :bar', '') #=>
|
165
|
+
# "...macro data interpolating this line of code..."
|
166
|
+
# @see expand
|
167
|
+
def expand(call_params = [], full_source = '', block_source = '')
|
168
|
+
self.class.expand(macro_data, call_params, full_source, block_source)
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
172
|
+
end
|
@@ -0,0 +1,196 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module YARD::CodeObjects
|
3
|
+
register_separator CSEP, :method
|
4
|
+
register_separator ISEP, :method
|
5
|
+
|
6
|
+
# Represents a Ruby method in source
|
7
|
+
class MethodObject < Base
|
8
|
+
# The scope of the method (+:class+ or +:instance+)
|
9
|
+
#
|
10
|
+
# @return [Symbol] the scope
|
11
|
+
attr_reader :scope
|
12
|
+
|
13
|
+
# Whether the object is explicitly defined in source or whether it was
|
14
|
+
# inferred by a handler. For instance, attribute methods are generally
|
15
|
+
# inferred and therefore not explicitly defined in source.
|
16
|
+
#
|
17
|
+
# @return [Boolean] whether the object is explicitly defined in source.
|
18
|
+
attr_accessor :explicit
|
19
|
+
|
20
|
+
# Returns the list of parameters parsed out of the method signature
|
21
|
+
# with their default values.
|
22
|
+
#
|
23
|
+
# @return [Array<Array(String, String)>] a list of parameter names followed
|
24
|
+
# by their default values (or nil)
|
25
|
+
attr_accessor :parameters
|
26
|
+
|
27
|
+
# Creates a new method object in +namespace+ with +name+ and an instance
|
28
|
+
# or class +scope+
|
29
|
+
#
|
30
|
+
# If scope is +:module+, this object is instantiated as a public
|
31
|
+
# method in +:class+ scope, but also creates a new (empty) method
|
32
|
+
# as a private +:instance+ method on the same class or module.
|
33
|
+
#
|
34
|
+
# @param [NamespaceObject] namespace the namespace
|
35
|
+
# @param [String, Symbol] name the method name
|
36
|
+
# @param [Symbol] scope +:instance+, +:class+, or +:module+
|
37
|
+
def initialize(namespace, name, scope = :instance, &block)
|
38
|
+
@module_function = false
|
39
|
+
@scope = nil
|
40
|
+
|
41
|
+
# handle module function
|
42
|
+
if scope == :module
|
43
|
+
other = self.class.new(namespace, name, &block)
|
44
|
+
other.visibility = :private
|
45
|
+
scope = :class
|
46
|
+
@module_function = true
|
47
|
+
end
|
48
|
+
|
49
|
+
@visibility = :public
|
50
|
+
self.scope = scope
|
51
|
+
self.parameters = []
|
52
|
+
|
53
|
+
super
|
54
|
+
end
|
55
|
+
|
56
|
+
# Changes the scope of an object from :instance or :class
|
57
|
+
# @param [Symbol] v the new scope
|
58
|
+
def scope=(v)
|
59
|
+
reregister = @scope ? true : false
|
60
|
+
|
61
|
+
# handle module function
|
62
|
+
if v == :module
|
63
|
+
other = self.class.new(namespace, name)
|
64
|
+
other.visibility = :private
|
65
|
+
@visibility = :public
|
66
|
+
@module_function = true
|
67
|
+
@path = nil
|
68
|
+
end
|
69
|
+
|
70
|
+
YARD::Registry.delete(self)
|
71
|
+
@path = nil
|
72
|
+
@scope = v.to_sym
|
73
|
+
@scope = :class if @scope == :module
|
74
|
+
YARD::Registry.register(self) if reregister
|
75
|
+
end
|
76
|
+
|
77
|
+
# @return whether or not the method is the #initialize constructor method
|
78
|
+
def constructor?
|
79
|
+
name == :initialize && scope == :instance && namespace.is_a?(ClassObject)
|
80
|
+
end
|
81
|
+
|
82
|
+
# @return [Boolean] whether or not this method was created as a module
|
83
|
+
# function
|
84
|
+
# @since 0.8.0
|
85
|
+
def module_function?
|
86
|
+
@module_function
|
87
|
+
end
|
88
|
+
|
89
|
+
# Returns the read/writer info for the attribute if it is one
|
90
|
+
# @return [SymbolHash] if there is information about the attribute
|
91
|
+
# @return [nil] if the method is not an attribute
|
92
|
+
# @since 0.5.3
|
93
|
+
def attr_info
|
94
|
+
return nil unless namespace.is_a?(NamespaceObject)
|
95
|
+
namespace.attributes[scope][name.to_s.gsub(/=$/, '')]
|
96
|
+
end
|
97
|
+
|
98
|
+
# @return [Boolean] whether the method is a writer attribute
|
99
|
+
# @since 0.5.3
|
100
|
+
def writer?
|
101
|
+
info = attr_info
|
102
|
+
info && info[:write] == self ? true : false
|
103
|
+
end
|
104
|
+
|
105
|
+
# @return [Boolean] whether the method is a reader attribute
|
106
|
+
# @since 0.5.3
|
107
|
+
def reader?
|
108
|
+
info = attr_info
|
109
|
+
info && info[:read] == self ? true : false
|
110
|
+
end
|
111
|
+
|
112
|
+
# Tests if the object is defined as an attribute in the namespace
|
113
|
+
# @return [Boolean] whether the object is an attribute
|
114
|
+
def is_attribute?
|
115
|
+
info = attr_info
|
116
|
+
if info
|
117
|
+
read_or_write = name.to_s =~ /=$/ ? :write : :read
|
118
|
+
info[read_or_write] ? true : false
|
119
|
+
else
|
120
|
+
false
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
# Tests if the object is defined as an alias of another method
|
125
|
+
# @return [Boolean] whether the object is an alias
|
126
|
+
def is_alias?
|
127
|
+
return false unless namespace.is_a?(NamespaceObject)
|
128
|
+
namespace.aliases.key? self
|
129
|
+
end
|
130
|
+
|
131
|
+
# Tests boolean {#explicit} value.
|
132
|
+
#
|
133
|
+
# @return [Boolean] whether the method is explicitly defined in source
|
134
|
+
def is_explicit?
|
135
|
+
explicit ? true : false
|
136
|
+
end
|
137
|
+
|
138
|
+
# @return [MethodObject] the object that this method overrides
|
139
|
+
# @return [nil] if it does not override a method
|
140
|
+
# @since 0.6.0
|
141
|
+
def overridden_method
|
142
|
+
return nil if namespace.is_a?(Proxy)
|
143
|
+
meths = namespace.meths(:all => true)
|
144
|
+
meths.find {|m| m.path != path && m.name == name && m.scope == scope }
|
145
|
+
end
|
146
|
+
|
147
|
+
# Returns all alias names of the object
|
148
|
+
# @return [Array<Symbol>] the alias names
|
149
|
+
def aliases
|
150
|
+
list = []
|
151
|
+
return list unless namespace.is_a?(NamespaceObject)
|
152
|
+
namespace.aliases.each do |o, aname|
|
153
|
+
list << o if aname == name && o.scope == scope
|
154
|
+
end
|
155
|
+
list
|
156
|
+
end
|
157
|
+
|
158
|
+
# Override path handling for instance methods in the root namespace
|
159
|
+
# (they should still have a separator as a prefix).
|
160
|
+
# @return [String] the path of a method
|
161
|
+
def path
|
162
|
+
@path ||= !namespace || namespace.path == "" ? sep + super : super
|
163
|
+
end
|
164
|
+
|
165
|
+
# Returns the name of the object.
|
166
|
+
#
|
167
|
+
# @example The name of an instance method (with prefix)
|
168
|
+
# an_instance_method.name(true) # => "#mymethod"
|
169
|
+
# @example The name of a class method (with prefix)
|
170
|
+
# a_class_method.name(true) # => "mymethod"
|
171
|
+
# @param [Boolean] prefix whether or not to show the prefix
|
172
|
+
# @return [String] returns {#sep} + +name+ for an instance method if
|
173
|
+
# prefix is true
|
174
|
+
# @return [Symbol] the name without {#sep} if prefix is set to false
|
175
|
+
def name(prefix = false)
|
176
|
+
prefix ? (sep == ISEP ? "#{sep}#{super}" : super.to_s) : super
|
177
|
+
end
|
178
|
+
|
179
|
+
# Override separator to differentiate between class and instance
|
180
|
+
# methods.
|
181
|
+
# @return [String] "#" for an instance method, "." for class
|
182
|
+
def sep
|
183
|
+
if scope == :class
|
184
|
+
namespace && namespace != YARD::Registry.root ? CSEP : NSEP
|
185
|
+
else
|
186
|
+
ISEP
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
protected
|
191
|
+
|
192
|
+
def copyable_attributes
|
193
|
+
super - %w(scope module_function)
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|