kinetic_sdk 5.0.19 → 5.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Code-of-Conduct.md +10 -10
- data/gems/mime-types-3.4.1/Contributing.md +132 -0
- data/gems/mime-types-3.4.1/History.md +269 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Licence.md +3 -3
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Manifest.txt +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/README.rdoc +1 -0
- data/gems/mime-types-3.4.1/Rakefile +270 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type/columnar.rb +3 -3
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type.rb +141 -94
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/_columnar.rb +20 -19
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/cache.rb +8 -8
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/columnar.rb +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/container.rb +14 -14
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/deprecations.rb +15 -11
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/full.rb +2 -2
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/loader.rb +28 -15
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/logger.rb +3 -5
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/registry.rb +7 -7
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types.rb +18 -16
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime-types.rb +1 -1
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/bad-fixtures/malformed +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/json.json +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/old-data +0 -0
- data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/yaml.yaml +0 -0
- data/gems/mime-types-3.4.1/test/minitest_helper.rb +11 -0
- data/gems/mime-types-3.4.1/test/test_mime_type.rb +621 -0
- data/gems/mime-types-3.4.1/test/test_mime_types.rb +169 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +118 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_class.rb +159 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +49 -0
- data/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +32 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Code-of-Conduct.md +12 -12
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Contributing.md +37 -20
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/History.md +46 -12
- data/gems/{websocket-driver-0.6.5-java/LICENSE.md → mime-types-data-3.2022.0105/Licence.md} +7 -5
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Manifest.txt +3 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/README.md +11 -1
- data/gems/mime-types-data-3.2022.0105/Rakefile +155 -0
- data/gems/mime-types-data-3.2022.0105/data/content_type_mime.db +878 -0
- data/gems/mime-types-data-3.2022.0105/data/ext_mime.db +1198 -0
- data/gems/mime-types-data-3.2022.0105/data/mime-types.json +1 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.content_type.column +69 -1
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.docs.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.encoding.column +68 -0
- data/gems/mime-types-data-3.2022.0105/data/mime.flags.column +2383 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.friendly.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.pext.column +68 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.use_instead.column +71 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.xrefs.column +98 -30
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime/types/data.rb +2 -2
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime-types-data.rb +1 -1
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/application.yaml +390 -24
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/audio.yaml +2 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/chemical.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/conference.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/drawing.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/font.yaml +0 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/image.yaml +4 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/message.yaml +9 -4
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/model.yaml +59 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/multipart.yaml +2 -2
- data/gems/mime-types-data-3.2022.0105/types/provisional-standard-types.yaml +145 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/text.yaml +24 -3
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/video.yaml +27 -0
- data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/world.yaml +0 -0
- data/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
- data/gems/rake-13.0.1/Gemfile +10 -0
- data/gems/rake-13.0.1/History.rdoc +2368 -0
- data/gems/{parallel-1.12.1/MIT-LICENSE.txt → rake-13.0.1/MIT-LICENSE} +2 -1
- data/gems/rake-13.0.1/README.rdoc +155 -0
- data/gems/rake-13.0.1/Rakefile +41 -0
- data/gems/rake-13.0.1/bin/bundle +105 -0
- data/gems/rake-13.0.1/bin/console +7 -0
- data/gems/rake-13.0.1/bin/rake +29 -0
- data/gems/rake-13.0.1/bin/rdoc +29 -0
- data/gems/rake-13.0.1/bin/rubocop +29 -0
- data/gems/rake-13.0.1/bin/setup +6 -0
- data/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
- data/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
- data/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
- data/gems/rake-13.0.1/doc/example/a.c +6 -0
- data/gems/rake-13.0.1/doc/example/b.c +6 -0
- data/gems/rake-13.0.1/doc/example/main.c +11 -0
- data/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
- data/gems/rake-13.0.1/doc/jamis.rb +592 -0
- data/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
- data/gems/rake-13.0.1/doc/rake.1 +156 -0
- data/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
- data/gems/rake-13.0.1/doc/rational.rdoc +151 -0
- data/gems/rake-13.0.1/exe/rake +27 -0
- data/gems/rake-13.0.1/lib/rake/application.rb +824 -0
- data/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
- data/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
- data/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
- data/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
- data/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
- data/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
- data/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
- data/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
- data/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
- data/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
- data/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
- data/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
- data/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
- data/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
- data/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
- data/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
- data/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
- data/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
- data/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
- data/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
- data/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
- data/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
- data/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
- data/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
- data/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
- data/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
- data/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
- data/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
- data/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
- data/gems/rake-13.0.1/lib/rake/task.rb +434 -0
- data/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
- data/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
- data/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
- data/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
- data/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
- data/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
- data/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
- data/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
- data/gems/rake-13.0.1/lib/rake/version.rb +10 -0
- data/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
- data/gems/rake-13.0.1/lib/rake.rb +71 -0
- data/gems/rake-13.0.1/rake.gemspec +43 -0
- data/gems/yard-0.9.25/CHANGELOG.md +804 -0
- data/gems/yard-0.9.25/CODE_OF_CONDUCT.md +15 -0
- data/gems/yard-0.9.25/CONTRIBUTING.md +140 -0
- data/gems/yard-0.9.25/Dockerfile.samus +28 -0
- data/gems/yard-0.9.25/Gemfile +32 -0
- data/gems/yard-0.9.25/LEGAL +66 -0
- data/gems/yard-0.9.25/LICENSE +22 -0
- data/gems/yard-0.9.25/README.md +325 -0
- data/gems/yard-0.9.25/Rakefile +39 -0
- data/gems/yard-0.9.25/SECURITY.md +26 -0
- data/gems/yard-0.9.25/benchmarks/builtins_vs_eval.rb +24 -0
- data/gems/yard-0.9.25/benchmarks/concat_vs_join.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/erb_vs_erubis.rb +54 -0
- data/gems/yard-0.9.25/benchmarks/format_args.rb +47 -0
- data/gems/yard-0.9.25/benchmarks/generation.rb +38 -0
- data/gems/yard-0.9.25/benchmarks/marshal_vs_dbm.rb +64 -0
- data/gems/yard-0.9.25/benchmarks/parsing.rb +46 -0
- data/gems/yard-0.9.25/benchmarks/pathname_vs_string.rb +51 -0
- data/gems/yard-0.9.25/benchmarks/rdoc_vs_yardoc.rb +11 -0
- data/gems/yard-0.9.25/benchmarks/registry_store_types.rb +49 -0
- data/gems/yard-0.9.25/benchmarks/ri_vs_yri.rb +19 -0
- data/gems/yard-0.9.25/benchmarks/ripper_parser.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/splat_vs_flatten.rb +13 -0
- data/gems/yard-0.9.25/benchmarks/template_erb.rb +23 -0
- data/gems/yard-0.9.25/benchmarks/template_format.rb +7 -0
- data/gems/yard-0.9.25/benchmarks/template_profile.rb +18 -0
- data/gems/yard-0.9.25/benchmarks/yri_cache.rb +20 -0
- data/gems/yard-0.9.25/bin/yard +13 -0
- data/gems/yard-0.9.25/bin/yardoc +13 -0
- data/gems/yard-0.9.25/bin/yri +13 -0
- data/gems/yard-0.9.25/docs/CodeObjects.md +115 -0
- data/gems/yard-0.9.25/docs/GettingStarted.md +679 -0
- data/gems/yard-0.9.25/docs/Handlers.md +152 -0
- data/gems/yard-0.9.25/docs/Overview.md +61 -0
- data/gems/yard-0.9.25/docs/Parser.md +191 -0
- data/gems/yard-0.9.25/docs/Tags.md +283 -0
- data/gems/yard-0.9.25/docs/TagsArch.md +123 -0
- data/gems/yard-0.9.25/docs/Templates.md +496 -0
- data/gems/yard-0.9.25/docs/WhatsNew.md +1245 -0
- data/gems/yard-0.9.25/docs/images/code-objects-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/handlers-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/overview-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/parser-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/images/tags-class-diagram.png +0 -0
- data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/full_list_tag.erb +9 -0
- data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/setup.rb +6 -0
- data/gems/yard-0.9.25/docs/templates/default/layout/html/setup.rb +9 -0
- data/gems/yard-0.9.25/docs/templates/default/layout/html/tag_list.erb +11 -0
- data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/list.erb +18 -0
- data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/setup.rb +26 -0
- data/gems/yard-0.9.25/docs/templates/plugin.rb +70 -0
- data/gems/yard-0.9.25/lib/rubygems_plugin.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/autoload.rb +308 -0
- data/gems/yard-0.9.25/lib/yard/cli/command.rb +85 -0
- data/gems/yard-0.9.25/lib/yard/cli/command_parser.rb +93 -0
- data/gems/yard-0.9.25/lib/yard/cli/config.rb +198 -0
- data/gems/yard-0.9.25/lib/yard/cli/diff.rb +273 -0
- data/gems/yard-0.9.25/lib/yard/cli/display.rb +69 -0
- data/gems/yard-0.9.25/lib/yard/cli/gems.rb +84 -0
- data/gems/yard-0.9.25/lib/yard/cli/graph.rb +125 -0
- data/gems/yard-0.9.25/lib/yard/cli/help.rb +20 -0
- data/gems/yard-0.9.25/lib/yard/cli/i18n.rb +70 -0
- data/gems/yard-0.9.25/lib/yard/cli/list.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/cli/markup_types.rb +32 -0
- data/gems/yard-0.9.25/lib/yard/cli/server.rb +266 -0
- data/gems/yard-0.9.25/lib/yard/cli/stats.rb +231 -0
- data/gems/yard-0.9.25/lib/yard/cli/yardoc.rb +789 -0
- data/gems/yard-0.9.25/lib/yard/cli/yardopts_command.rb +110 -0
- data/gems/yard-0.9.25/lib/yard/cli/yri.rb +215 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/base.rb +622 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/class_object.rb +146 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/class_variable_object.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/constant_object.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb +24 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/extra_file_object.rb +134 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/macro_object.rb +172 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/method_object.rb +196 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/module_object.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/namespace_mapper.rb +141 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/namespace_object.rb +200 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/proxy.rb +245 -0
- data/gems/yard-0.9.25/lib/yard/code_objects/root_object.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/config.rb +270 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/array.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/file.rb +69 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/hash.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/insertion.rb +63 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/module.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/string.rb +68 -0
- data/gems/yard-0.9.25/lib/yard/core_ext/symbol_hash.rb +75 -0
- data/gems/yard-0.9.25/lib/yard/docstring.rb +386 -0
- data/gems/yard-0.9.25/lib/yard/docstring_parser.rb +345 -0
- data/gems/yard-0.9.25/lib/yard/gem_index.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/globals.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/base.rb +595 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/alias_handler.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/attribute_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/base.rb +164 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/class_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/constant_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/handler_methods.rb +212 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb +20 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/method_handler.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/mixin_handler.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/module_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/override_comment_handler.rb +31 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/path_handler.rb +11 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/struct_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/c/symbol_handler.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/handlers/common/method_handler.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/handlers/processor.rb +200 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/alias_handler.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/attribute_handler.rb +87 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/base.rb +165 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_condition_handler.rb +92 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_handler.rb +119 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_variable_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/comment_handler.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/constant_handler.rb +55 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/decorator_handler_methods.rb +123 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler_methods.rb +96 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/exception_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/extend_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/alias_handler.rb +37 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/attribute_handler.rb +65 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/base.rb +245 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_handler.rb +113 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/comment_handler.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/constant_handler.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/dsl_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/exception_handler.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/extend_handler.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/method_handler.rb +90 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_function_handler.rb +19 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_handler.rb +12 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_class_method_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/visibility_handler.rb +17 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/yield_handler.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_condition_handler.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_handler.rb +104 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/mixin_handler.rb +49 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_function_handler.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_handler.rb +12 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_class_method_handler.rb +14 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_constant_handler.rb +43 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/public_class_method_handler.rb +14 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/struct_handler_methods.rb +143 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/visibility_handler.rb +22 -0
- data/gems/yard-0.9.25/lib/yard/handlers/ruby/yield_handler.rb +31 -0
- data/gems/yard-0.9.25/lib/yard/i18n/locale.rb +67 -0
- data/gems/yard-0.9.25/lib/yard/i18n/message.rb +57 -0
- data/gems/yard-0.9.25/lib/yard/i18n/messages.rb +56 -0
- data/gems/yard-0.9.25/lib/yard/i18n/po_parser.rb +61 -0
- data/gems/yard-0.9.25/lib/yard/i18n/pot_generator.rb +290 -0
- data/gems/yard-0.9.25/lib/yard/i18n/text.rb +173 -0
- data/gems/yard-0.9.25/lib/yard/logging.rb +205 -0
- data/gems/yard-0.9.25/lib/yard/options.rb +217 -0
- data/gems/yard-0.9.25/lib/yard/parser/base.rb +57 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/c_parser.rb +235 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/comment_parser.rb +134 -0
- data/gems/yard-0.9.25/lib/yard/parser/c/statement.rb +66 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/ast_node.rb +551 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/irb/slex.rb +276 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_lex.rb +1345 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_parser.rb +32 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement.rb +68 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement_list.rb +394 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/token_list.rb +74 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/ruby_parser.rb +701 -0
- data/gems/yard-0.9.25/lib/yard/parser/ruby/token_resolver.rb +158 -0
- data/gems/yard-0.9.25/lib/yard/parser/source_parser.rb +526 -0
- data/gems/yard-0.9.25/lib/yard/rake/yardoc_task.rb +81 -0
- data/gems/yard-0.9.25/lib/yard/registry.rb +439 -0
- data/gems/yard-0.9.25/lib/yard/registry_resolver.rb +217 -0
- data/gems/yard-0.9.25/lib/yard/registry_store.rb +342 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/LICENSE.txt +57 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/MIT.txt +20 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/gem.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports/source_index.rb +365 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/backports.rb +10 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/doc_manager.rb +90 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/hook.rb +197 -0
- data/gems/yard-0.9.25/lib/yard/rubygems/specification.rb +50 -0
- data/gems/yard-0.9.25/lib/yard/serializers/base.rb +83 -0
- data/gems/yard-0.9.25/lib/yard/serializers/file_system_serializer.rb +123 -0
- data/gems/yard-0.9.25/lib/yard/serializers/process_serializer.rb +24 -0
- data/gems/yard-0.9.25/lib/yard/serializers/stdout_serializer.rb +34 -0
- data/gems/yard-0.9.25/lib/yard/serializers/yardoc_serializer.rb +152 -0
- data/gems/yard-0.9.25/lib/yard/server/adapter.rb +100 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/base.rb +209 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/display_file_command.rb +29 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/display_object_command.rb +65 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/frames_command.rb +16 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/library_command.rb +187 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/library_index_command.rb +28 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/list_command.rb +25 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/root_request_command.rb +15 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/search_command.rb +79 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/static_file_command.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/server/commands/static_file_helpers.rb +61 -0
- data/gems/yard-0.9.25/lib/yard/server/doc_server_helper.rb +91 -0
- data/gems/yard-0.9.25/lib/yard/server/doc_server_serializer.rb +39 -0
- data/gems/yard-0.9.25/lib/yard/server/library_version.rb +277 -0
- data/gems/yard-0.9.25/lib/yard/server/rack_adapter.rb +89 -0
- data/gems/yard-0.9.25/lib/yard/server/router.rb +187 -0
- data/gems/yard-0.9.25/lib/yard/server/static_caching.rb +46 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/css/custom.css +127 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/breadcrumb.erb +37 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/script_setup.erb +7 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/setup.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/setup.rb +5 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/headers.erb +8 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +14 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/listing.erb +13 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/setup.rb +6 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/processing.erb +52 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/setup.rb +4 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
- data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/setup.rb +9 -0
- data/gems/yard-0.9.25/lib/yard/server/webrick_adapter.rb +45 -0
- data/gems/yard-0.9.25/lib/yard/server.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/default_factory.rb +191 -0
- data/gems/yard-0.9.25/lib/yard/tags/default_tag.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/directives.rb +616 -0
- data/gems/yard-0.9.25/lib/yard/tags/library.rb +633 -0
- data/gems/yard-0.9.25/lib/yard/tags/option_tag.rb +13 -0
- data/gems/yard-0.9.25/lib/yard/tags/overload_tag.rb +71 -0
- data/gems/yard-0.9.25/lib/yard/tags/ref_tag.rb +8 -0
- data/gems/yard-0.9.25/lib/yard/tags/ref_tag_list.rb +28 -0
- data/gems/yard-0.9.25/lib/yard/tags/tag.rb +71 -0
- data/gems/yard-0.9.25/lib/yard/tags/tag_format_error.rb +7 -0
- data/gems/yard-0.9.25/lib/yard/tags/types_explainer.rb +162 -0
- data/gems/yard-0.9.25/lib/yard/templates/engine.rb +186 -0
- data/gems/yard-0.9.25/lib/yard/templates/erb_cache.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/base_helper.rb +215 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/filter_helper.rb +27 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/html_helper.rb +670 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +78 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markdown.rb +23 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markup.rb +110 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/markup_helper.rb +172 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/method_helper.rb +75 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/module_helper.rb +21 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/text_helper.rb +112 -0
- data/gems/yard-0.9.25/lib/yard/templates/helpers/uml_helper.rb +47 -0
- data/gems/yard-0.9.25/lib/yard/templates/section.rb +105 -0
- data/gems/yard-0.9.25/lib/yard/templates/template.rb +418 -0
- data/gems/yard-0.9.25/lib/yard/templates/template_options.rb +92 -0
- data/gems/yard-0.9.25/lib/yard/verifier.rb +151 -0
- data/gems/yard-0.9.25/lib/yard/version.rb +6 -0
- data/gems/yard-0.9.25/lib/yard.rb +69 -0
- data/gems/yard-0.9.25/po/ja.po +31108 -0
- data/gems/yard-0.9.25/samus.json +80 -0
- data/gems/yard-0.9.25/tasks/update_error_map.rake +53 -0
- data/gems/yard-0.9.25/templates/default/class/dot/setup.rb +7 -0
- data/gems/yard-0.9.25/templates/default/class/dot/superklass.erb +3 -0
- data/gems/yard-0.9.25/templates/default/class/html/constructor_details.erb +8 -0
- data/gems/yard-0.9.25/templates/default/class/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/default/class/html/subclasses.erb +4 -0
- data/gems/yard-0.9.25/templates/default/class/setup.rb +36 -0
- data/gems/yard-0.9.25/templates/default/class/text/setup.rb +12 -0
- data/gems/yard-0.9.25/templates/default/class/text/subclasses.erb +5 -0
- data/gems/yard-0.9.25/templates/default/constant/text/header.erb +11 -0
- data/gems/yard-0.9.25/templates/default/constant/text/setup.rb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/abstract.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/deprecated.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/index.erb +5 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/note.erb +6 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/private.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/returns_void.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/text.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/html/todo.erb +6 -0
- data/gems/yard-0.9.25/templates/default/docstring/setup.rb +52 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/abstract.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/deprecated.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/index.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/note.erb +4 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/private.erb +2 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/returns_void.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/text.erb +1 -0
- data/gems/yard-0.9.25/templates/default/docstring/text/todo.erb +4 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/common.css +1 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/full_list.css +58 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/css/style.css +496 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/frames.erb +17 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list.erb +37 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_class.erb +2 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_file.erb +7 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_method.erb +10 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/app.js +314 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/full_list.js +216 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/js/jquery.js +4 -0
- data/gems/yard-0.9.25/templates/default/fulldoc/html/setup.rb +241 -0
- data/gems/yard-0.9.25/templates/default/layout/dot/header.erb +6 -0
- data/gems/yard-0.9.25/templates/default/layout/dot/setup.rb +15 -0
- data/gems/yard-0.9.25/templates/default/layout/html/breadcrumb.erb +11 -0
- data/gems/yard-0.9.25/templates/default/layout/html/files.erb +11 -0
- data/gems/yard-0.9.25/templates/default/layout/html/footer.erb +5 -0
- data/gems/yard-0.9.25/templates/default/layout/html/headers.erb +15 -0
- data/gems/yard-0.9.25/templates/default/layout/html/index.erb +2 -0
- data/gems/yard-0.9.25/templates/default/layout/html/layout.erb +24 -0
- data/gems/yard-0.9.25/templates/default/layout/html/listing.erb +4 -0
- data/gems/yard-0.9.25/templates/default/layout/html/objects.erb +32 -0
- data/gems/yard-0.9.25/templates/default/layout/html/script_setup.erb +4 -0
- data/gems/yard-0.9.25/templates/default/layout/html/search.erb +13 -0
- data/gems/yard-0.9.25/templates/default/layout/html/setup.rb +89 -0
- data/gems/yard-0.9.25/templates/default/method/html/header.erb +17 -0
- data/gems/yard-0.9.25/templates/default/method/setup.rb +4 -0
- data/gems/yard-0.9.25/templates/default/method/text/header.erb +1 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/header.erb +3 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/method_signature.erb +25 -0
- data/gems/yard-0.9.25/templates/default/method_details/html/source.erb +10 -0
- data/gems/yard-0.9.25/templates/default/method_details/setup.rb +11 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/header.erb +10 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/method_signature.erb +12 -0
- data/gems/yard-0.9.25/templates/default/method_details/text/setup.rb +11 -0
- data/gems/yard-0.9.25/templates/default/module/dot/child.erb +1 -0
- data/gems/yard-0.9.25/templates/default/module/dot/dependencies.erb +3 -0
- data/gems/yard-0.9.25/templates/default/module/dot/header.erb +6 -0
- data/gems/yard-0.9.25/templates/default/module/dot/info.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/dot/setup.rb +15 -0
- data/gems/yard-0.9.25/templates/default/module/html/attribute_details.erb +10 -0
- data/gems/yard-0.9.25/templates/default/module/html/attribute_summary.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/box_info.erb +43 -0
- data/gems/yard-0.9.25/templates/default/module/html/children.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/constant_summary.erb +17 -0
- data/gems/yard-0.9.25/templates/default/module/html/defines.erb +3 -0
- data/gems/yard-0.9.25/templates/default/module/html/header.erb +5 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_attributes.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_constants.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/html/inherited_methods.erb +19 -0
- data/gems/yard-0.9.25/templates/default/module/html/item_summary.erb +40 -0
- data/gems/yard-0.9.25/templates/default/module/html/method_details_list.erb +9 -0
- data/gems/yard-0.9.25/templates/default/module/html/method_summary.erb +14 -0
- data/gems/yard-0.9.25/templates/default/module/html/methodmissing.erb +12 -0
- data/gems/yard-0.9.25/templates/default/module/html/pre_docstring.erb +1 -0
- data/gems/yard-0.9.25/templates/default/module/setup.rb +167 -0
- data/gems/yard-0.9.25/templates/default/module/text/children.erb +10 -0
- data/gems/yard-0.9.25/templates/default/module/text/class_meths_list.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/extends.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/header.erb +7 -0
- data/gems/yard-0.9.25/templates/default/module/text/includes.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/instance_meths_list.erb +8 -0
- data/gems/yard-0.9.25/templates/default/module/text/setup.rb +13 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/files.erb +5 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/headers.erb +6 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/layout.erb +17 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/readme.erb +3 -0
- data/gems/yard-0.9.25/templates/default/onefile/html/setup.rb +62 -0
- data/gems/yard-0.9.25/templates/default/root/dot/child.erb +3 -0
- data/gems/yard-0.9.25/templates/default/root/dot/setup.rb +6 -0
- data/gems/yard-0.9.25/templates/default/root/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/default/tags/html/example.erb +11 -0
- data/gems/yard-0.9.25/templates/default/tags/html/index.erb +3 -0
- data/gems/yard-0.9.25/templates/default/tags/html/option.erb +24 -0
- data/gems/yard-0.9.25/templates/default/tags/html/overload.erb +14 -0
- data/gems/yard-0.9.25/templates/default/tags/html/see.erb +8 -0
- data/gems/yard-0.9.25/templates/default/tags/html/tag.erb +20 -0
- data/gems/yard-0.9.25/templates/default/tags/setup.rb +57 -0
- data/gems/yard-0.9.25/templates/default/tags/text/example.erb +12 -0
- data/gems/yard-0.9.25/templates/default/tags/text/index.erb +1 -0
- data/gems/yard-0.9.25/templates/default/tags/text/option.erb +20 -0
- data/gems/yard-0.9.25/templates/default/tags/text/overload.erb +19 -0
- data/gems/yard-0.9.25/templates/default/tags/text/see.erb +11 -0
- data/gems/yard-0.9.25/templates/default/tags/text/tag.erb +13 -0
- data/gems/yard-0.9.25/templates/guide/class/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/guide/docstring/html/setup.rb +2 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/css/style.css +108 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/js/app.js +33 -0
- data/gems/yard-0.9.25/templates/guide/fulldoc/html/setup.rb +74 -0
- data/gems/yard-0.9.25/templates/guide/layout/html/layout.erb +81 -0
- data/gems/yard-0.9.25/templates/guide/layout/html/setup.rb +25 -0
- data/gems/yard-0.9.25/templates/guide/method/html/header.erb +18 -0
- data/gems/yard-0.9.25/templates/guide/method/html/setup.rb +22 -0
- data/gems/yard-0.9.25/templates/guide/module/html/header.erb +7 -0
- data/gems/yard-0.9.25/templates/guide/module/html/method_list.erb +5 -0
- data/gems/yard-0.9.25/templates/guide/module/html/setup.rb +27 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/files.erb +4 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/setup.rb +6 -0
- data/gems/yard-0.9.25/templates/guide/onefile/html/toc.erb +3 -0
- data/gems/yard-0.9.25/templates/guide/tags/html/setup.rb +9 -0
- data/gems/yard-0.9.25/yard.gemspec +24 -0
- data/kinetic_sdk.gemspec +0 -4
- data/lib/kinetic_sdk/core/lib/form.rb +55 -0
- data/lib/kinetic_sdk/core/lib/kapp.rb +52 -0
- data/lib/kinetic_sdk/core/lib/space.rb +51 -0
- data/lib/kinetic_sdk/task/lib/export.rb +22 -2
- data/lib/kinetic_sdk/task/lib/trees.rb +11 -0
- data/lib/kinetic_sdk/version.rb +1 -1
- data/lib/kinetic_sdk.rb +2 -22
- metadata +534 -225
- data/gems/kontena-websocket-client-0.1.1/Gemfile +0 -4
- data/gems/kontena-websocket-client-0.1.1/LICENSE +0 -190
- data/gems/kontena-websocket-client-0.1.1/README.md +0 -138
- data/gems/kontena-websocket-client-0.1.1/Rakefile +0 -6
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-client.rb +0 -45
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-em.rb +0 -66
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.rb +0 -161
- data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.sh +0 -17
- data/gems/kontena-websocket-client-0.1.1/benchmark/websocket-echo-server.go +0 -207
- data/gems/kontena-websocket-client-0.1.1/examples/websocket-echo-client.rb +0 -80
- data/gems/kontena-websocket-client-0.1.1/kontena-websocket-client.gemspec +0 -24
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/connection.rb +0 -119
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/version.rb +0 -13
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client.rb +0 -848
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/error.rb +0 -81
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/logging.rb +0 -55
- data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/openssl_patch.rb +0 -10
- data/gems/kontena-websocket-client-0.1.1/lib/kontena-websocket-client.rb +0 -15
- data/gems/mime-types-3.3.1/Contributing.md +0 -143
- data/gems/mime-types-3.3.1/History.md +0 -240
- data/gems/mime-types-3.3.1/Rakefile +0 -284
- data/gems/mime-types-3.3.1/test/minitest_helper.rb +0 -13
- data/gems/mime-types-3.3.1/test/test_mime_type.rb +0 -610
- data/gems/mime-types-3.3.1/test/test_mime_types.rb +0 -169
- data/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +0 -118
- data/gems/mime-types-3.3.1/test/test_mime_types_class.rb +0 -159
- data/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +0 -49
- data/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +0 -32
- data/gems/mime-types-data-3.2021.0225/Licence.md +0 -25
- data/gems/mime-types-data-3.2021.0225/Rakefile +0 -159
- data/gems/mime-types-data-3.2021.0225/data/mime-types.json +0 -1
- data/gems/mime-types-data-3.2021.0225/data/mime.flags.column +0 -2315
- data/gems/parallel-1.12.1/lib/parallel/processor_count.rb +0 -93
- data/gems/parallel-1.12.1/lib/parallel/version.rb +0 -3
- data/gems/parallel-1.12.1/lib/parallel.rb +0 -500
- data/gems/ruby-progressbar-1.9.0/LICENSE.txt +0 -19
- data/gems/ruby-progressbar-1.9.0/README.md +0 -38
- data/gems/ruby-progressbar-1.9.0/Rakefile +0 -2
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/base.rb +0 -183
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/length.rb +0 -99
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/running_average.rb +0 -9
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/bar.rb +0 -96
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/percentage.rb +0 -29
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/rate.rb +0 -43
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/time.rb +0 -107
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/title.rb +0 -13
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components.rb +0 -5
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +0 -4
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/formatter.rb +0 -27
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/molecule.rb +0 -59
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/string.rb +0 -36
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format.rb +0 -3
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/output.rb +0 -68
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/non_tty.rb +0 -47
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/null.rb +0 -33
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/tty.rb +0 -32
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/progress.rb +0 -118
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements/enumerator.rb +0 -25
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements.rb +0 -1
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb +0 -25
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/time.rb +0 -30
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/timer.rb +0 -72
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/version.rb +0 -3
- data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar.rb +0 -18
- data/gems/websocket-driver-0.6.5/CHANGELOG.md +0 -123
- data/gems/websocket-driver-0.6.5/LICENSE.md +0 -22
- data/gems/websocket-driver-0.6.5/README.md +0 -369
- data/gems/websocket-driver-0.6.5/examples/tcp_server.rb +0 -28
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/Makefile +0 -264
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/WebsocketMaskService.java +0 -55
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/extconf.rb +0 -4
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.bundle +0 -0
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.c +0 -41
- data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.o +0 -0
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/client.rb +0 -140
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft75.rb +0 -102
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft76.rb +0 -96
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/event_emitter.rb +0 -54
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/headers.rb +0 -45
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/frame.rb +0 -20
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/message.rb +0 -31
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi.rb +0 -406
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/proxy.rb +0 -68
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/server.rb +0 -80
- data/gems/websocket-driver-0.6.5/lib/websocket/driver/stream_reader.rb +0 -55
- data/gems/websocket-driver-0.6.5/lib/websocket/driver.rb +0 -199
- data/gems/websocket-driver-0.6.5/lib/websocket/http/headers.rb +0 -112
- data/gems/websocket-driver-0.6.5/lib/websocket/http/request.rb +0 -45
- data/gems/websocket-driver-0.6.5/lib/websocket/http/response.rb +0 -29
- data/gems/websocket-driver-0.6.5/lib/websocket/http.rb +0 -15
- data/gems/websocket-driver-0.6.5/lib/websocket/mask.rb +0 -14
- data/gems/websocket-driver-0.6.5/lib/websocket/websocket_mask.rb +0 -2
- data/gems/websocket-driver-0.6.5/lib/websocket_mask.bundle +0 -0
- data/gems/websocket-driver-0.6.5-java/CHANGELOG.md +0 -123
- data/gems/websocket-driver-0.6.5-java/README.md +0 -369
- data/gems/websocket-driver-0.6.5-java/examples/tcp_server.rb +0 -28
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/WebsocketMaskService.java +0 -55
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/extconf.rb +0 -4
- data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/websocket_mask.c +0 -41
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/client.rb +0 -140
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft75.rb +0 -102
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft76.rb +0 -96
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/event_emitter.rb +0 -54
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/headers.rb +0 -45
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/frame.rb +0 -20
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/message.rb +0 -31
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi.rb +0 -406
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/proxy.rb +0 -68
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/server.rb +0 -80
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/stream_reader.rb +0 -55
- data/gems/websocket-driver-0.6.5-java/lib/websocket/driver.rb +0 -199
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/headers.rb +0 -112
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/request.rb +0 -45
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http/response.rb +0 -29
- data/gems/websocket-driver-0.6.5-java/lib/websocket/http.rb +0 -15
- data/gems/websocket-driver-0.6.5-java/lib/websocket/mask.rb +0 -14
- data/gems/websocket-driver-0.6.5-java/lib/websocket/websocket_mask.rb +0 -2
- data/gems/websocket-driver-0.6.5-java/lib/websocket_mask.jar +0 -0
- data/gems/websocket-extensions-0.1.3/CHANGELOG.md +0 -15
- data/gems/websocket-extensions-0.1.3/LICENSE.md +0 -20
- data/gems/websocket-extensions-0.1.3/README.md +0 -313
- data/gems/websocket-extensions-0.1.3/lib/websocket/extensions/parser.rb +0 -111
- data/gems/websocket-extensions-0.1.3/lib/websocket/extensions.rb +0 -181
- data/lib/kinetic_sdk/discussions/lib/websockets.rb +0 -96
@@ -0,0 +1,622 @@
|
|
1
|
+
= Rakefile Format
|
2
|
+
|
3
|
+
First of all, there is no special format for a Rakefile. A Rakefile
|
4
|
+
contains executable Ruby code. Anything legal in a ruby script is
|
5
|
+
allowed in a Rakefile.
|
6
|
+
|
7
|
+
Now that we understand there is no special syntax in a Rakefile, there
|
8
|
+
are some conventions that are used in a Rakefile that are a little
|
9
|
+
unusual in a typical Ruby program. Since a Rakefile is tailored to
|
10
|
+
specifying tasks and actions, the idioms used in a Rakefile are
|
11
|
+
designed to support that.
|
12
|
+
|
13
|
+
So, what goes into a Rakefile?
|
14
|
+
|
15
|
+
== Tasks
|
16
|
+
|
17
|
+
Tasks are the main unit of work in a Rakefile. Tasks have a name
|
18
|
+
(usually given as a symbol or a string), a list of prerequisites (more
|
19
|
+
symbols or strings) and a list of actions (given as a block).
|
20
|
+
|
21
|
+
=== Simple Tasks
|
22
|
+
|
23
|
+
A task is declared by using the +task+ method. +task+ takes a single
|
24
|
+
parameter that is the name of the task.
|
25
|
+
|
26
|
+
task :name
|
27
|
+
|
28
|
+
=== Tasks with Prerequisites
|
29
|
+
|
30
|
+
Any prerequisites are given as a list (enclosed in square brackets)
|
31
|
+
following the name and an arrow (=>).
|
32
|
+
|
33
|
+
task name: [:prereq1, :prereq2]
|
34
|
+
|
35
|
+
*NOTE:* Although this syntax looks a little funky, it is legal
|
36
|
+
Ruby. We are constructing a hash where the key is :name and the value
|
37
|
+
for that key is the list of prerequisites. It is equivalent to the
|
38
|
+
following ...
|
39
|
+
|
40
|
+
hash = Hash.new
|
41
|
+
hash[:name] = [:prereq1, :prereq2]
|
42
|
+
task(hash)
|
43
|
+
|
44
|
+
You can also use strings for task names and prerequisites, rake doesn't care.
|
45
|
+
This is the same task definition:
|
46
|
+
|
47
|
+
task 'name' => %w[prereq1 prereq2]
|
48
|
+
|
49
|
+
As is this:
|
50
|
+
|
51
|
+
task name: %w[prereq1 prereq2]
|
52
|
+
|
53
|
+
We'll prefer this style for regular tasks with prerequisites throughout the
|
54
|
+
rest of the document. Using an array of strings for the prerequisites means
|
55
|
+
you will need to make fewer changes if you need to move tasks into namespaces
|
56
|
+
or perform other refactorings.
|
57
|
+
|
58
|
+
=== Tasks with Actions
|
59
|
+
|
60
|
+
Actions are defined by passing a block to the +task+ method. Any Ruby
|
61
|
+
code can be placed in the block. The block may reference the task
|
62
|
+
object via the block parameter.
|
63
|
+
|
64
|
+
task name: [:prereq1, :prereq2] do |t|
|
65
|
+
# actions (may reference t)
|
66
|
+
end
|
67
|
+
|
68
|
+
=== Multiple Definitions
|
69
|
+
|
70
|
+
A task may be specified more than once. Each specification adds its
|
71
|
+
prerequisites and actions to the existing definition. This allows one
|
72
|
+
part of a rakefile to specify the actions and a different rakefile
|
73
|
+
(perhaps separately generated) to specify the dependencies.
|
74
|
+
|
75
|
+
For example, the following is equivalent to the single task
|
76
|
+
specification given above.
|
77
|
+
|
78
|
+
task :name
|
79
|
+
task name: :prereq1
|
80
|
+
task name: %w[prereq2]
|
81
|
+
task :name do |t|
|
82
|
+
# actions
|
83
|
+
end
|
84
|
+
|
85
|
+
== File Tasks
|
86
|
+
|
87
|
+
Some tasks are designed to create a file from one or more other files.
|
88
|
+
Tasks that generate these files may be skipped if the file already
|
89
|
+
exists. File tasks are used to specify file creation tasks.
|
90
|
+
|
91
|
+
File tasks are declared using the +file+ method (instead of the +task+
|
92
|
+
method). In addition, file tasks are usually named with a string
|
93
|
+
rather than a symbol.
|
94
|
+
|
95
|
+
The following file task creates a executable program (named +prog+)
|
96
|
+
given two object files named +a.o+ and +b.o+. The tasks
|
97
|
+
for creating +a.o+ and +b.o+ are not shown.
|
98
|
+
|
99
|
+
file "prog" => ["a.o", "b.o"] do |t|
|
100
|
+
sh "cc -o #{t.name} #{t.prerequisites.join(' ')}"
|
101
|
+
end
|
102
|
+
|
103
|
+
== Directory Tasks
|
104
|
+
|
105
|
+
It is common to need to create directories upon demand. The
|
106
|
+
+directory+ convenience method is a short-hand for creating a FileTask
|
107
|
+
that creates the directory. For example, the following declaration
|
108
|
+
...
|
109
|
+
|
110
|
+
directory "testdata/examples/doc"
|
111
|
+
|
112
|
+
is equivalent to ...
|
113
|
+
|
114
|
+
file "testdata" do |t| mkdir t.name end
|
115
|
+
file "testdata/examples" => ["testdata"] do |t| mkdir t.name end
|
116
|
+
file "testdata/examples/doc" => ["testdata/examples"] do |t| mkdir t.name end
|
117
|
+
|
118
|
+
The +directory+ method does not accept prerequisites or actions, but
|
119
|
+
both prerequisites and actions can be added later. For example ...
|
120
|
+
|
121
|
+
directory "testdata"
|
122
|
+
file "testdata" => ["otherdata"]
|
123
|
+
file "testdata" do
|
124
|
+
cp Dir["standard_data/*.data"], "testdata"
|
125
|
+
end
|
126
|
+
|
127
|
+
== Tasks with Parallel Prerequisites
|
128
|
+
|
129
|
+
Rake allows parallel execution of prerequisites using the following syntax:
|
130
|
+
|
131
|
+
multitask copy_files: %w[copy_src copy_doc copy_bin] do
|
132
|
+
puts "All Copies Complete"
|
133
|
+
end
|
134
|
+
|
135
|
+
In this example, +copy_files+ is a normal rake task. Its actions are
|
136
|
+
executed whenever all of its prerequisites are done. The big
|
137
|
+
difference is that the prerequisites (+copy_src+, +copy_bin+ and
|
138
|
+
+copy_doc+) are executed in parallel. Each of the prerequisites are
|
139
|
+
run in their own Ruby thread, possibly allowing faster overall runtime.
|
140
|
+
|
141
|
+
=== Secondary Prerequisites
|
142
|
+
|
143
|
+
If any of the primary prerequisites of a multitask have common secondary
|
144
|
+
prerequisites, all of the primary/parallel prerequisites will wait
|
145
|
+
until the common prerequisites have been run.
|
146
|
+
|
147
|
+
For example, if the <tt>copy_<em>xxx</em></tt> tasks have the
|
148
|
+
following prerequisites:
|
149
|
+
|
150
|
+
task copy_src: :prep_for_copy
|
151
|
+
task copy_bin: :prep_for_copy
|
152
|
+
task copy_doc: :prep_for_copy
|
153
|
+
|
154
|
+
Then the +prep_for_copy+ task is run before starting all the copies in
|
155
|
+
parallel. Once +prep_for_copy+ is complete, +copy_src+, +copy_bin+,
|
156
|
+
and +copy_doc+ are all run in parallel. Note that +prep_for_copy+ is
|
157
|
+
run only once, even though it is referenced in multiple threads.
|
158
|
+
|
159
|
+
=== Thread Safety
|
160
|
+
|
161
|
+
The Rake internal data structures are thread-safe with respect
|
162
|
+
to the multitask parallel execution, so there is no need for the user
|
163
|
+
to do extra synchronization for Rake's benefit. However, if there are
|
164
|
+
user data structures shared between the parallel prerequisites, the
|
165
|
+
user must do whatever is necessary to prevent race conditions.
|
166
|
+
|
167
|
+
== Tasks with Arguments
|
168
|
+
|
169
|
+
Prior to version 0.8.0, rake was only able to handle command line
|
170
|
+
arguments of the form NAME=VALUE that were passed into Rake via the
|
171
|
+
ENV hash. Many folks had asked for some kind of simple command line
|
172
|
+
arguments, perhaps using "--" to separate regular task names from
|
173
|
+
argument values on the command line. The problem is that there was no
|
174
|
+
easy way to associate positional arguments on the command line with
|
175
|
+
different tasks. Suppose both tasks :a and :b expect a command line
|
176
|
+
argument: does the first value go with :a? What if :b is run first?
|
177
|
+
Should it then get the first command line argument.
|
178
|
+
|
179
|
+
Rake 0.8.0 solves this problem by explicitly passing values directly
|
180
|
+
to the tasks that need them. For example, if I had a release task
|
181
|
+
that required a version number, I could say:
|
182
|
+
|
183
|
+
rake release[0.8.2]
|
184
|
+
|
185
|
+
And the string "0.8.2" will be passed to the :release task. Multiple
|
186
|
+
arguments can be passed by separating them with a comma, for example:
|
187
|
+
|
188
|
+
rake name[john,doe]
|
189
|
+
|
190
|
+
Just a few words of caution. The rake task name and its arguments
|
191
|
+
need to be a single command line argument to rake. This generally
|
192
|
+
means no spaces. If spaces are needed, then the entire name +
|
193
|
+
argument string should be quoted. Something like this:
|
194
|
+
|
195
|
+
rake "name[billy bob, smith]"
|
196
|
+
|
197
|
+
(Quoting rules vary between operating systems and shells, so make sure
|
198
|
+
you consult the proper docs for your OS/shell).
|
199
|
+
|
200
|
+
=== Tasks that Expect Parameters
|
201
|
+
|
202
|
+
Parameters are only given to tasks that are setup to expect them. In
|
203
|
+
order to handle named parameters, the task declaration syntax for
|
204
|
+
tasks has been extended slightly.
|
205
|
+
|
206
|
+
For example, a task that needs a first name and last name might be
|
207
|
+
declared as:
|
208
|
+
|
209
|
+
task :name, [:first_name, :last_name]
|
210
|
+
|
211
|
+
The first argument is still the name of the task (:name in this case).
|
212
|
+
The next two arguments are the names of the parameters expected by
|
213
|
+
:name in an array (:first_name and :last_name in the example).
|
214
|
+
|
215
|
+
To access the values of the parameters, the block defining the task
|
216
|
+
behaviour can now accept a second parameter:
|
217
|
+
|
218
|
+
task :name, [:first_name, :last_name] do |t, args|
|
219
|
+
puts "First name is #{args.first_name}"
|
220
|
+
puts "Last name is #{args.last_name}"
|
221
|
+
end
|
222
|
+
|
223
|
+
The first argument of the block "t" is always bound to the current
|
224
|
+
task object. The second argument "args" is an open-struct like object
|
225
|
+
that allows access to the task arguments. Extra command line
|
226
|
+
arguments to a task are ignored.
|
227
|
+
|
228
|
+
If you wish to specify default values for the arguments, you can use
|
229
|
+
the with_defaults method in the task body. Here is the above example
|
230
|
+
where we specify default values for the first and last names:
|
231
|
+
|
232
|
+
task :name, [:first_name, :last_name] do |t, args|
|
233
|
+
args.with_defaults(:first_name => "John", :last_name => "Dough")
|
234
|
+
puts "First name is #{args.first_name}"
|
235
|
+
puts "Last name is #{args.last_name}"
|
236
|
+
end
|
237
|
+
|
238
|
+
=== Tasks that Expect Parameters and Have Prerequisites
|
239
|
+
|
240
|
+
Tasks that use parameters have a slightly different format for
|
241
|
+
prerequisites. Use the arrow notation to indicate the prerequisites
|
242
|
+
for tasks with arguments. For example:
|
243
|
+
|
244
|
+
task :name, [:first_name, :last_name] => [:pre_name] do |t, args|
|
245
|
+
args.with_defaults(:first_name => "John", :last_name => "Dough")
|
246
|
+
puts "First name is #{args.first_name}"
|
247
|
+
puts "Last name is #{args.last_name}"
|
248
|
+
end
|
249
|
+
|
250
|
+
=== Tasks that take Variable-length Parameters
|
251
|
+
|
252
|
+
Tasks that need to handle a list of values as a parameter can use the
|
253
|
+
extras method of the args variable. This allows for tasks that can
|
254
|
+
loop over a variable number of values, and its compatible with named
|
255
|
+
parameters as well:
|
256
|
+
|
257
|
+
task :email, [:message] do |t, args|
|
258
|
+
mail = Mail.new(args.message)
|
259
|
+
recipients = args.extras
|
260
|
+
recipients.each do |target|
|
261
|
+
mail.send_to(target)
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
There is also the convenience method to_a that returns all parameters
|
266
|
+
in the sequential order they were given, including those associated
|
267
|
+
with named parameters.
|
268
|
+
|
269
|
+
=== Deprecated Task Parameters Format
|
270
|
+
|
271
|
+
There is an older format for declaring task parameters that omitted
|
272
|
+
the task argument array and used the :needs keyword to introduce the
|
273
|
+
dependencies. That format is still supported for compatibility, but
|
274
|
+
is not recommended for use. The older format may be dropped in future
|
275
|
+
versions of rake.
|
276
|
+
|
277
|
+
== Accessing Task Programmatically
|
278
|
+
|
279
|
+
Sometimes it is useful to manipulate tasks programmatically in a
|
280
|
+
Rakefile. To find a task object use Rake::Task.[].
|
281
|
+
|
282
|
+
=== Programmatic Task Example
|
283
|
+
|
284
|
+
For example, the following Rakefile defines two tasks. The :doit task
|
285
|
+
simply prints a simple "DONE" message. The :dont class will lookup
|
286
|
+
the doit class and remove (clear) all of its prerequisites and
|
287
|
+
actions.
|
288
|
+
|
289
|
+
task :doit do
|
290
|
+
puts "DONE"
|
291
|
+
end
|
292
|
+
|
293
|
+
task :dont do
|
294
|
+
Rake::Task[:doit].clear
|
295
|
+
end
|
296
|
+
|
297
|
+
Running this example:
|
298
|
+
|
299
|
+
$ rake doit
|
300
|
+
(in /Users/jim/working/git/rake/x)
|
301
|
+
DONE
|
302
|
+
$ rake dont doit
|
303
|
+
(in /Users/jim/working/git/rake/x)
|
304
|
+
$
|
305
|
+
|
306
|
+
The ability to programmatically manipulate tasks gives rake very
|
307
|
+
powerful meta-programming capabilities w.r.t. task execution, but
|
308
|
+
should be used with caution.
|
309
|
+
|
310
|
+
== Rules
|
311
|
+
|
312
|
+
When a file is named as a prerequisite, but does not have a file task
|
313
|
+
defined for it, Rake will attempt to synthesize a task by looking at a
|
314
|
+
list of rules supplied in the Rakefile.
|
315
|
+
|
316
|
+
Suppose we were trying to invoke task "mycode.o", but no task is
|
317
|
+
defined for it. But the rakefile has a rule that look like this ...
|
318
|
+
|
319
|
+
rule '.o' => ['.c'] do |t|
|
320
|
+
sh "cc #{t.source} -c -o #{t.name}"
|
321
|
+
end
|
322
|
+
|
323
|
+
This rule will synthesize any task that ends in ".o". It has a
|
324
|
+
prerequisite a source file with an extension of ".c" must exist. If
|
325
|
+
Rake is able to find a file named "mycode.c", it will automatically
|
326
|
+
create a task that builds "mycode.o" from "mycode.c".
|
327
|
+
|
328
|
+
If the file "mycode.c" does not exist, rake will attempt
|
329
|
+
to recursively synthesize a rule for it.
|
330
|
+
|
331
|
+
When a task is synthesized from a rule, the +source+ attribute of the
|
332
|
+
task is set to the matching source file. This allows us to write
|
333
|
+
rules with actions that reference the source file.
|
334
|
+
|
335
|
+
=== Advanced Rules
|
336
|
+
|
337
|
+
Any regular expression may be used as the rule pattern. Additionally,
|
338
|
+
a proc may be used to calculate the name of the source file. This
|
339
|
+
allows for complex patterns and sources.
|
340
|
+
|
341
|
+
The following rule is equivalent to the example above.
|
342
|
+
|
343
|
+
rule( /\.o$/ => [
|
344
|
+
proc {|task_name| task_name.sub(/\.[^.]+$/, '.c') }
|
345
|
+
]) do |t|
|
346
|
+
sh "cc #{t.source} -c -o #{t.name}"
|
347
|
+
end
|
348
|
+
|
349
|
+
*NOTE:* Because of a _quirk_ in Ruby syntax, parenthesis are
|
350
|
+
required on *rule* when the first argument is a regular expression.
|
351
|
+
|
352
|
+
The following rule might be used for Java files ...
|
353
|
+
|
354
|
+
rule '.class' => [
|
355
|
+
proc { |tn| tn.sub(/\.class$/, '.java').sub(/^classes\//, 'src/') }
|
356
|
+
] do |t|
|
357
|
+
java_compile(t.source, t.name)
|
358
|
+
end
|
359
|
+
|
360
|
+
*NOTE:* +java_compile+ is a hypothetical method that invokes the
|
361
|
+
java compiler.
|
362
|
+
|
363
|
+
== Importing Dependencies
|
364
|
+
|
365
|
+
Any ruby file (including other rakefiles) can be included with a
|
366
|
+
standard Ruby +require+ command. The rules and declarations in the
|
367
|
+
required file are just added to the definitions already accumulated.
|
368
|
+
|
369
|
+
Because the files are loaded _before_ the rake targets are evaluated,
|
370
|
+
the loaded files must be "ready to go" when the rake command is
|
371
|
+
invoked. This makes generated dependency files difficult to use. By
|
372
|
+
the time rake gets around to updating the dependencies file, it is too
|
373
|
+
late to load it.
|
374
|
+
|
375
|
+
The +import+ command addresses this by specifying a file to be loaded
|
376
|
+
_after_ the main rakefile is loaded, but _before_ any targets on the
|
377
|
+
command line are invoked. In addition, if the file name matches an
|
378
|
+
explicit task, that task is invoked before loading the file. This
|
379
|
+
allows dependency files to be generated and used in a single rake
|
380
|
+
command invocation.
|
381
|
+
|
382
|
+
Example:
|
383
|
+
|
384
|
+
require 'rake/loaders/makefile'
|
385
|
+
|
386
|
+
file ".depends.mf" => [SRC_LIST] do |t|
|
387
|
+
sh "makedepend -f- -- #{CFLAGS} -- #{t.prerequisites} > #{t.name}"
|
388
|
+
end
|
389
|
+
|
390
|
+
import ".depends.mf"
|
391
|
+
|
392
|
+
If ".depends" does not exist, or is out of date w.r.t. the source
|
393
|
+
files, a new ".depends" file is generated using +makedepend+ before
|
394
|
+
loading.
|
395
|
+
|
396
|
+
== Comments
|
397
|
+
|
398
|
+
Standard Ruby comments (beginning with "#") can be used anywhere it is
|
399
|
+
legal in Ruby source code, including comments for tasks and rules.
|
400
|
+
However, if you wish a task to be described using the "-T" switch,
|
401
|
+
then you need to use the +desc+ command to describe the task.
|
402
|
+
|
403
|
+
Example:
|
404
|
+
|
405
|
+
desc "Create a distribution package"
|
406
|
+
task package: %w[ ... ] do ... end
|
407
|
+
|
408
|
+
The "-T" switch (or "--tasks" if you like to spell things out) will
|
409
|
+
display a list of tasks that have a description. If you use +desc+ to
|
410
|
+
describe your major tasks, you have a semi-automatic way of generating
|
411
|
+
a summary of your Rake file.
|
412
|
+
|
413
|
+
$ rake -T
|
414
|
+
(in /home/.../rake)
|
415
|
+
rake clean # Remove any temporary products.
|
416
|
+
rake clobber # Remove any generated file.
|
417
|
+
rake clobber_rdoc # Remove rdoc products
|
418
|
+
rake contrib_test # Run tests for contrib_test
|
419
|
+
rake default # Default Task
|
420
|
+
rake install # Install the application
|
421
|
+
rake lines # Count lines in the main rake file
|
422
|
+
rake rdoc # Build the rdoc HTML Files
|
423
|
+
rake rerdoc # Force a rebuild of the RDOC files
|
424
|
+
rake test # Run tests
|
425
|
+
rake testall # Run all test targets
|
426
|
+
|
427
|
+
Only tasks with descriptions will be displayed with the "-T" switch.
|
428
|
+
Use "-P" (or "--prereqs") to get a list of all tasks and their
|
429
|
+
prerequisites.
|
430
|
+
|
431
|
+
== Namespaces
|
432
|
+
|
433
|
+
As projects grow (and along with it, the number of tasks), it is
|
434
|
+
common for task names to begin to clash. For example, if you might
|
435
|
+
have a main program and a set of sample programs built by a single
|
436
|
+
Rakefile. By placing the tasks related to the main program in one
|
437
|
+
namespace, and the tasks for building the sample programs in a
|
438
|
+
different namespace, the task names will not interfere with each other.
|
439
|
+
|
440
|
+
For example:
|
441
|
+
|
442
|
+
namespace "main" do
|
443
|
+
task :build do
|
444
|
+
# Build the main program
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
448
|
+
namespace "samples" do
|
449
|
+
task :build do
|
450
|
+
# Build the sample programs
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
task build: %w[main:build samples:build]
|
455
|
+
|
456
|
+
Referencing a task in a separate namespace can be achieved by
|
457
|
+
prefixing the task name with the namespace and a colon
|
458
|
+
(e.g. "main:build" refers to the :build task in the +main+ namespace).
|
459
|
+
Nested namespaces are supported.
|
460
|
+
|
461
|
+
Note that the name given in the +task+ command is always the unadorned
|
462
|
+
task name without any namespace prefixes. The +task+ command always
|
463
|
+
defines a task in the current namespace.
|
464
|
+
|
465
|
+
=== FileTasks
|
466
|
+
|
467
|
+
File task names are not scoped by the namespace command. Since the
|
468
|
+
name of a file task is the name of an actual file in the file system,
|
469
|
+
it makes little sense to include file task names in name space.
|
470
|
+
Directory tasks (created by the +directory+ command) are a type of
|
471
|
+
file task and are also not affected by namespaces.
|
472
|
+
|
473
|
+
=== Name Resolution
|
474
|
+
|
475
|
+
When looking up a task name, rake will start with the current
|
476
|
+
namespace and attempt to find the name there. If it fails to find a
|
477
|
+
name in the current namespace, it will search the parent namespaces
|
478
|
+
until a match is found (or an error occurs if there is no match).
|
479
|
+
|
480
|
+
The "rake" namespace is a special implicit namespace that refers to
|
481
|
+
the toplevel names.
|
482
|
+
|
483
|
+
If a task name begins with a "^" character, the name resolution will
|
484
|
+
start in the parent namespace. Multiple "^" characters are allowed.
|
485
|
+
|
486
|
+
Here is an example file with multiple :run tasks and how various names
|
487
|
+
resolve in different locations.
|
488
|
+
|
489
|
+
task :run
|
490
|
+
|
491
|
+
namespace "one" do
|
492
|
+
task :run
|
493
|
+
|
494
|
+
namespace "two" do
|
495
|
+
task :run
|
496
|
+
|
497
|
+
# :run => "one:two:run"
|
498
|
+
# "two:run" => "one:two:run"
|
499
|
+
# "one:two:run" => "one:two:run"
|
500
|
+
# "one:run" => "one:run"
|
501
|
+
# "^run" => "one:run"
|
502
|
+
# "^^run" => "rake:run" (the top level task)
|
503
|
+
# "rake:run" => "rake:run" (the top level task)
|
504
|
+
end
|
505
|
+
|
506
|
+
# :run => "one:run"
|
507
|
+
# "two:run" => "one:two:run"
|
508
|
+
# "^run" => "rake:run"
|
509
|
+
end
|
510
|
+
|
511
|
+
# :run => "rake:run"
|
512
|
+
# "one:run" => "one:run"
|
513
|
+
# "one:two:run" => "one:two:run"
|
514
|
+
|
515
|
+
== FileLists
|
516
|
+
|
517
|
+
FileLists are the way Rake manages lists of files. You can treat a
|
518
|
+
FileList as an array of strings for the most part, but FileLists
|
519
|
+
support some additional operations.
|
520
|
+
|
521
|
+
=== Creating a FileList
|
522
|
+
|
523
|
+
Creating a file list is easy. Just give it the list of file names:
|
524
|
+
|
525
|
+
fl = FileList['file1.rb', file2.rb']
|
526
|
+
|
527
|
+
Or give it a glob pattern:
|
528
|
+
|
529
|
+
fl = FileList['*.rb']
|
530
|
+
|
531
|
+
== Odds and Ends
|
532
|
+
|
533
|
+
=== do/end versus { }
|
534
|
+
|
535
|
+
Blocks may be specified with either a +do+/+end+ pair, or with curly
|
536
|
+
braces in Ruby. We _strongly_ recommend using +do+/+end+ to specify the
|
537
|
+
actions for tasks and rules. Because the rakefile idiom tends to
|
538
|
+
leave off parentheses on the task/file/rule methods, unusual
|
539
|
+
ambiguities can arise when using curly braces.
|
540
|
+
|
541
|
+
For example, suppose that the method +object_files+ returns a list of
|
542
|
+
object files in a project. Now we use +object_files+ as the
|
543
|
+
prerequisites in a rule specified with actions in curly braces.
|
544
|
+
|
545
|
+
# DON'T DO THIS!
|
546
|
+
file "prog" => object_files {
|
547
|
+
# Actions are expected here (but it doesn't work)!
|
548
|
+
}
|
549
|
+
|
550
|
+
Because curly braces have a higher precedence than +do+/+end+, the
|
551
|
+
block is associated with the +object_files+ method rather than the
|
552
|
+
+file+ method.
|
553
|
+
|
554
|
+
This is the proper way to specify the task ...
|
555
|
+
|
556
|
+
# THIS IS FINE
|
557
|
+
file "prog" => object_files do
|
558
|
+
# Actions go here
|
559
|
+
end
|
560
|
+
|
561
|
+
== Rakefile Path
|
562
|
+
|
563
|
+
When issuing the +rake+ command in a terminal, Rake will look
|
564
|
+
for a Rakefile in the current directory. If a Rakefile is not found,
|
565
|
+
it will search parent directories until one is found.
|
566
|
+
|
567
|
+
For example, if a Rakefile resides in the +project/+ directory,
|
568
|
+
moving deeper into the project's directory tree will not have an adverse
|
569
|
+
effect on rake tasks:
|
570
|
+
|
571
|
+
$ pwd
|
572
|
+
/home/user/project
|
573
|
+
|
574
|
+
$ cd lib/foo/bar
|
575
|
+
$ pwd
|
576
|
+
/home/user/project/lib/foo/bar
|
577
|
+
|
578
|
+
$ rake run_pwd
|
579
|
+
/home/user/project
|
580
|
+
|
581
|
+
As far as rake is concerned, all tasks are run from the directory in
|
582
|
+
which the Rakefile resides.
|
583
|
+
|
584
|
+
=== Multiple Rake Files
|
585
|
+
|
586
|
+
Not all tasks need to be included in a single Rakefile. Additional
|
587
|
+
rake files (with the file extension "+.rake+") may be placed in
|
588
|
+
+rakelib+ directory located at the top level of a project (i.e.
|
589
|
+
the same directory that contains the main +Rakefile+).
|
590
|
+
|
591
|
+
Also, rails projects may include additional rake files in the
|
592
|
+
+lib/tasks+ directory.
|
593
|
+
|
594
|
+
=== Clean and Clobber Tasks
|
595
|
+
|
596
|
+
Through <tt>require 'rake/clean'</tt> Rake provides +clean+ and +clobber+
|
597
|
+
tasks:
|
598
|
+
|
599
|
+
+clean+ ::
|
600
|
+
Clean up the project by deleting scratch files and backup files. Add files
|
601
|
+
to the +CLEAN+ FileList to have the +clean+ target handle them.
|
602
|
+
|
603
|
+
+clobber+ ::
|
604
|
+
Clobber all generated and non-source files in a project. The task depends
|
605
|
+
on +clean+, so all the +CLEAN+ files will be deleted as well as files in the
|
606
|
+
+CLOBBER+ FileList. The intent of this task is to return a project to its
|
607
|
+
pristine, just unpacked state.
|
608
|
+
|
609
|
+
You can add file names or glob patterns to both the +CLEAN+ and +CLOBBER+
|
610
|
+
lists.
|
611
|
+
|
612
|
+
=== Phony Task
|
613
|
+
|
614
|
+
The phony task can be used as a dependency to allow file-based tasks to use
|
615
|
+
non-file-based-tasks as prerequisites without forcing them to rebuild. You
|
616
|
+
can <tt>require 'rake/phony'</tt> to add the +phony+ task.
|
617
|
+
|
618
|
+
----
|
619
|
+
|
620
|
+
== See
|
621
|
+
|
622
|
+
* README.rdoc -- Main documentation for Rake.
|