es_cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.bundle/config +2 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +12 -0
- data/exe/es +8 -0
- data/lib/es_cli/cli.rb +247 -0
- data/lib/es_cli/version.rb +5 -0
- data/lib/es_cli.rb +11 -0
- data/readme.org +78 -0
- data/sig/es_cli.rbs +4 -0
- data/vendor/bundle/ruby/3.1.0/bin/rake +29 -0
- data/vendor/bundle/ruby/3.1.0/bin/thor +29 -0
- data/vendor/bundle/ruby/3.1.0/cache/event_stream_parser-1.0.0.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/faraday-2.12.2.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/faraday-multipart-1.1.0.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/faraday-net_http-3.4.0.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/json-2.9.1.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/logger-1.6.5.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/multipart-post-2.4.1.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/net-http-0.6.0.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/power_assert-2.0.5.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/rake-13.2.1.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/ruby-openai-7.3.1.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/test-unit-3.6.7.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/thor-1.3.2.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/cache/uri-1.0.2.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/arm64-darwin-23/3.1.0/json-2.9.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/arm64-darwin-23/3.1.0/json-2.9.1/gem_make.out +22 -0
- data/vendor/bundle/ruby/3.1.0/extensions/arm64-darwin-23/3.1.0/json-2.9.1/json/ext/generator.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/arm64-darwin-23/3.1.0/json-2.9.1/json/ext/parser.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/arm64-darwin-23/3.1.0/json-2.9.1/mkmf.log +208 -0
- data/vendor/bundle/ruby/3.1.0/gems/event_stream_parser-1.0.0/LICENSE.md +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/event_stream_parser-1.0.0/README.md +99 -0
- data/vendor/bundle/ruby/3.1.0/gems/event_stream_parser-1.0.0/lib/event_stream_parser/version.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/event_stream_parser-1.0.0/lib/event_stream_parser.rb +222 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/CHANGELOG.md +574 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/LICENSE.md +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/README.md +67 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/Rakefile +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/examples/client_spec.rb +119 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/examples/client_test.rb +144 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/adapter/test.rb +311 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/adapter.rb +101 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/adapter_registry.rb +30 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/connection.rb +564 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/encoders/flat_params_encoder.rb +105 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/encoders/nested_params_encoder.rb +183 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/error.rb +165 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/logging/formatter.rb +118 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/methods.rb +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/middleware.rb +72 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/middleware_registry.rb +83 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options/connection_options.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options/env.rb +204 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options/proxy_options.rb +36 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options/request_options.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options/ssl_options.rb +73 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/options.rb +219 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/parameters.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/rack_builder.rb +251 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/request/authorization.rb +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/request/instrumentation.rb +58 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/request/json.rb +70 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/request/url_encoded.rb +60 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/request.rb +139 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/response/json.rb +74 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/response/logger.rb +37 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/response/raise_error.rb +83 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/response.rb +91 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/utils/headers.rb +150 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/utils/params_hash.rb +61 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/utils.rb +121 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday/version.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/lib/faraday.rb +157 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/external_adapters/faraday_specs_setup.rb +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/adapter/test_spec.rb +442 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/adapter_registry_spec.rb +28 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/adapter_spec.rb +55 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/connection_spec.rb +808 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/error_spec.rb +93 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/middleware_registry_spec.rb +31 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/middleware_spec.rb +213 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/options/env_spec.rb +76 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/options/options_spec.rb +297 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/options/proxy_options_spec.rb +52 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/options/request_options_spec.rb +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/params_encoders/flat_spec.rb +42 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/params_encoders/nested_spec.rb +151 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/rack_builder_spec.rb +317 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/request/authorization_spec.rb +118 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/request/instrumentation_spec.rb +74 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/request/json_spec.rb +199 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/request/url_encoded_spec.rb +93 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/request_spec.rb +110 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/response/json_spec.rb +206 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/response/logger_spec.rb +278 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/response/raise_error_spec.rb +275 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/response_spec.rb +77 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/utils/headers_spec.rb +109 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday/utils_spec.rb +119 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/faraday_spec.rb +43 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/spec_helper.rb +133 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/disabling_stub.rb +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/fake_safe_buffer.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/faraday_middleware_subclasses.rb +18 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/helper_methods.rb +96 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/shared_examples/adapter.rb +105 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/shared_examples/params_encoder.rb +18 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/shared_examples/request_method.rb +263 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-2.12.2/spec/support/streaming_response_checker.rb +35 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/CHANGELOG.md +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/LICENSE.md +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/README.md +170 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/lib/faraday/multipart/file_part.rb +130 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/lib/faraday/multipart/middleware.rb +134 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/lib/faraday/multipart/param_part.rb +55 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/lib/faraday/multipart/version.rb +16 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-multipart-1.1.0/lib/faraday/multipart.rb +26 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-net_http-3.4.0/LICENSE.md +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-net_http-3.4.0/README.md +57 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-net_http-3.4.0/lib/faraday/adapter/net_http.rb +206 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-net_http-3.4.0/lib/faraday/net_http/version.rb +7 -0
- data/vendor/bundle/ruby/3.1.0/gems/faraday-net_http-3.4.0/lib/faraday/net_http.rb +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/CHANGES.md +572 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/COPYING +56 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/LEGAL +60 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/README.md +195 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/fbuffer/fbuffer.h +214 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/Makefile +269 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/extconf.rb +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/generator.c +1691 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/Makefile +269 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/extconf.rb +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/parser.c +3238 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/ext/json/ext/parser/parser.rl +1465 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/json.gemspec +64 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/bigdecimal.rb +58 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/complex.rb +51 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/core.rb +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/date.rb +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/date_time.rb +67 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/exception.rb +49 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/ostruct.rb +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/range.rb +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/rational.rb +49 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/regexp.rb +48 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/set.rb +48 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/struct.rb +52 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/symbol.rb +47 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/add/time.rb +52 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/common.rb +896 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/ext/generator/state.rb +116 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/ext/generator.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/ext/parser.bundle +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/ext.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/generic_object.rb +75 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/truffle_ruby/generator.rb +629 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json/version.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/json-2.9.1/lib/json.rb +587 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/.github/dependabot.yml +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/.github/workflows/push_gem.yml +46 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/.github/workflows/test.yml +32 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/.gitignore +11 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/COPYING +56 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/Gemfile +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/README.md +104 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/Rakefile +30 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/bin/console +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/bin/setup +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/errors.rb +9 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/formatter.rb +36 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/log_device.rb +241 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/period.rb +47 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/severity.rb +38 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger/version.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/lib/logger.rb +761 -0
- data/vendor/bundle/ruby/3.1.0/gems/logger-1.6.5/logger.gemspec +28 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/changelog.md +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/composite_io.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post/composite_read_io.rb +91 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post/multipartable.rb +70 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post/parts.rb +148 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post/upload_io.rb +64 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post/version.rb +11 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart/post.rb +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipart_post.rb +11 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/multipartable.rb +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/net/http/post/multipart.rb +28 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/lib/parts.rb +25 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/license.md +58 -0
- data/vendor/bundle/ruby/3.1.0/gems/multipart-post-2.4.1/readme.md +170 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/COPYING +56 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/Gemfile +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/README.md +93 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/Rakefile +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/bin/console +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/bin/setup +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/doc/net-http/examples.rdoc +31 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/doc/net-http/included_getters.rdoc +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/exceptions.rb +34 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/generic_request.rb +414 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/header.rb +981 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/proxy_delta.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/request.rb +88 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/requests.rb +430 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/response.rb +738 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/responses.rb +1174 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http/status.rb +84 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/http.rb +2580 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/lib/net/https.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/net-http-0.6.0/net-http.gemspec +39 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/.github/dependabot.yml +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/.github/workflows/ci.yml +46 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/.gitignore +9 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/COPYING +57 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/Gemfile +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/LEGAL +4 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/README.md +98 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/Rakefile +59 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/colorize.rb +7 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/configuration.rb +46 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/context.rb +233 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/enable_tracepoint_events.rb +62 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/inspector.rb +66 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/parser.rb +251 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert/version.rb +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/lib/power_assert.rb +93 -0
- data/vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/power_assert.gemspec +24 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/History.rdoc +2403 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/README.rdoc +155 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/command_line_usage.rdoc +158 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/example/Rakefile1 +38 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/example/Rakefile2 +35 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/example/a.c +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/example/b.c +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/example/main.c +11 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/glossary.rdoc +42 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/jamis.rb +592 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/proto_rake.rdoc +127 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/rake.1 +156 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/rakefile.rdoc +622 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/doc/rational.rdoc +151 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/exe/rake +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/application.rb +861 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/backtrace.rb +25 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/clean.rb +78 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/cloneable.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/cpu_counter.rb +107 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/default_loader.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/dsl_definition.rb +196 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/early_time.rb +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/ext/core.rb +26 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/ext/string.rb +176 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/file_creation_task.rb +25 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/file_list.rb +435 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/file_task.rb +58 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/file_utils.rb +132 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/file_utils_ext.rb +134 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/invocation_chain.rb +57 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/invocation_exception_mixin.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/late_time.rb +18 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/linked_list.rb +112 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/loaders/makefile.rb +54 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/multi_task.rb +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/packagetask.rb +222 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/phony.rb +16 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/private_reader.rb +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/promise.rb +100 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/pseudo_status.rb +30 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/rake_module.rb +67 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/rake_test_loader.rb +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/scope.rb +43 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/task.rb +434 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/task_argument_error.rb +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/task_arguments.rb +109 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/task_manager.rb +331 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/tasklib.rb +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/testtask.rb +189 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/thread_history_display.rb +49 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/thread_pool.rb +163 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/trace_output.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/version.rb +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake/win32.rb +51 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/lib/rake.rb +70 -0
- data/vendor/bundle/ruby/3.1.0/gems/rake-13.2.1/rake.gemspec +101 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.circleci/config.yml +46 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.devcontainer/Dockerfile +16 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.devcontainer/devcontainer.json +36 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.devcontainer/docker-compose.yml +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.github/FUNDING.yml +13 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.github/dependabot.yml +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.gitignore +69 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.rspec +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/.rubocop.yml +31 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/CHANGELOG.md +467 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/CODE_OF_CONDUCT.md +74 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/CONTRIBUTING.md +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/Gemfile +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/Gemfile.lock +92 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/README.md +1381 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/Rakefile +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/bin/console +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/bin/setup +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/assistants.rb +29 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/audio.rb +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/batches.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/client.rb +122 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/compatibility.rb +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/files.rb +75 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/finetunes.rb +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/http.rb +134 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/http_headers.rb +36 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/images.rb +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/messages.rb +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/models.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/run_steps.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/runs.rb +37 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/threads.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/vector_store_file_batches.rb +29 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/vector_store_files.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/vector_stores.rb +27 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai/version.rb +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/openai.rb +92 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/lib/ruby/openai.rb +2 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/pull_request_template.md +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/ruby-openai-7.3.1/ruby-openai.gemspec +32 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/BSDL +24 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/COPYING +64 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/PSFL +271 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/README.md +108 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/Rakefile +74 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/doc/text/getting-started.md +246 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/doc/text/how-to.md +90 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/doc/text/news.md +1853 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/assertion-failed-error.rb +60 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/assertions.rb +2541 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/attribute-matcher.rb +26 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/attribute.rb +228 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/auto-runner-loader.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/autorunner.rb +629 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/code-snippet-fetcher.rb +58 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector/descendant.rb +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector/dir.rb +110 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector/load.rb +201 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector/objectspace.rb +35 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector/xml.rb +249 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/collector.rb +104 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/color-scheme.rb +225 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/color.rb +134 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/data-sets.rb +127 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/data.rb +371 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/diff.rb +745 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/error.rb +158 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/exception-handler.rb +82 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/failure.rb +169 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/fault-location-detector.rb +104 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/fixture.rb +304 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/notification.rb +138 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/omission.rb +198 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/pending.rb +155 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/priority.rb +194 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/runner/console.rb +86 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/runner/emacs.rb +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/runner/xml.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/sub-test-result.rb +59 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/test-suite-creator.rb +103 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/test-suite-runner.rb +128 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/test-suite-thread-runner.rb +69 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/testcase.rb +963 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/testresult.rb +132 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/testsuite.rb +108 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/console/outputlevel.rb +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/console/testrunner.rb +891 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/emacs/testrunner.rb +49 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/testrunner.rb +53 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/testrunnermediator.rb +119 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/ui/xml/testrunner.rb +224 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/backtracefilter.rb +59 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/memory-usage.rb +47 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/observable.rb +86 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/output.rb +32 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/util/procwrapper.rb +48 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/version.rb +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit/warning.rb +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test/unit.rb +521 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/lib/test-unit.rb +19 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/sample/adder.rb +13 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/sample/subtracter.rb +12 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/sample/test_adder.rb +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/sample/test_subtracter.rb +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/test-unit-3.6.7/sample/test_user.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/.document +5 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/CONTRIBUTING.md +15 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/LICENSE.md +20 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/README.md +45 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/bin/thor +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/create_file.rb +105 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/create_link.rb +61 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/directory.rb +108 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/empty_directory.rb +143 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/file_manipulation.rb +371 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions/inject_into_file.rb +130 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/actions.rb +340 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/base.rb +825 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/command.rb +151 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/core_ext/hash_with_indifferent_access.rb +107 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/error.rb +106 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/group.rb +292 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/invocation.rb +178 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/line_editor/basic.rb +37 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/line_editor/readline.rb +88 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/line_editor.rb +17 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/nested_context.rb +29 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/parser/argument.rb +86 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/parser/arguments.rb +195 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/parser/option.rb +178 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/parser/options.rb +294 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/parser.rb +4 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/rake_compat.rb +72 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/runner.rb +335 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/basic.rb +388 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/color.rb +115 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/column_printer.rb +29 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/html.rb +84 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/lcs_diff.rb +49 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/table_printer.rb +118 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/terminal.rb +42 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell/wrapped_printer.rb +38 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/shell.rb +81 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/util.rb +285 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor/version.rb +3 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/lib/thor.rb +674 -0
- data/vendor/bundle/ruby/3.1.0/gems/thor-1.3.2/thor.gemspec +33 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/COPYING +56 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/README.md +55 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/common.rb +876 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/file.rb +100 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/ftp.rb +267 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/generic.rb +1578 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/http.rb +125 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/https.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/ldap.rb +261 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/ldaps.rb +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/mailto.rb +293 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/rfc2396_parser.rb +546 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/rfc3986_parser.rb +206 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/version.rb +6 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/ws.rb +83 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri/wss.rb +23 -0
- data/vendor/bundle/ruby/3.1.0/gems/uri-1.0.2/lib/uri.rb +104 -0
- data/vendor/bundle/ruby/3.1.0/specifications/event_stream_parser-1.0.0.gemspec +23 -0
- data/vendor/bundle/ruby/3.1.0/specifications/faraday-2.12.2.gemspec +0 -0
- data/vendor/bundle/ruby/3.1.0/specifications/faraday-multipart-1.1.0.gemspec +32 -0
- data/vendor/bundle/ruby/3.1.0/specifications/faraday-net_http-3.4.0.gemspec +32 -0
- data/vendor/bundle/ruby/3.1.0/specifications/json-2.9.1.gemspec +0 -0
- data/vendor/bundle/ruby/3.1.0/specifications/logger-1.6.5.gemspec +22 -0
- data/vendor/bundle/ruby/3.1.0/specifications/multipart-post-2.4.1.gemspec +21 -0
- data/vendor/bundle/ruby/3.1.0/specifications/net-http-0.6.0.gemspec +33 -0
- data/vendor/bundle/ruby/3.1.0/specifications/power_assert-2.0.5.gemspec +24 -0
- data/vendor/bundle/ruby/3.1.0/specifications/rake-13.2.1.gemspec +26 -0
- data/vendor/bundle/ruby/3.1.0/specifications/ruby-openai-7.3.1.gemspec +36 -0
- data/vendor/bundle/ruby/3.1.0/specifications/test-unit-3.6.7.gemspec +31 -0
- data/vendor/bundle/ruby/3.1.0/specifications/thor-1.3.2.gemspec +34 -0
- data/vendor/bundle/ruby/3.1.0/specifications/uri-1.0.2.gemspec +23 -0
- metadata +560 -0
@@ -0,0 +1,1853 @@
|
|
1
|
+
# News
|
2
|
+
|
3
|
+
## 3.6.7 - 2024-12-17 {#version-3-6-7}
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
* Fixed a bug that test-unit doesn't work with Ruby < 2.5.
|
8
|
+
|
9
|
+
## 3.6.6 - 2024-12-17 {#version-3-6-6}
|
10
|
+
|
11
|
+
### Improvements
|
12
|
+
|
13
|
+
* Improved backward compatibility for the `Test::Unit::TestCase#run`
|
14
|
+
overriding case. In general, we don't recommend it but there are
|
15
|
+
old scripts that do it. (Mainly, I did it...)
|
16
|
+
* GH-276
|
17
|
+
* Reported by Mamoru TASAKA
|
18
|
+
|
19
|
+
### Thanks
|
20
|
+
|
21
|
+
* Mamoru TASAKA
|
22
|
+
|
23
|
+
## 3.6.5 - 2024-12-15 {#version-3-6-5}
|
24
|
+
|
25
|
+
### Fixes
|
26
|
+
|
27
|
+
* parallel: thread: Fixed a bug that we can't use `pend` and `notify`.
|
28
|
+
* GH-271
|
29
|
+
* Reported by Takahiro Ueda
|
30
|
+
* Patch by Tsutomu Katsube
|
31
|
+
|
32
|
+
### Thanks
|
33
|
+
|
34
|
+
* Takahiro Ueda
|
35
|
+
|
36
|
+
* Tsutomu Katsube
|
37
|
+
|
38
|
+
## 3.6.4 - 2024-11-28 {#version-3-6-4}
|
39
|
+
|
40
|
+
### Improvements
|
41
|
+
|
42
|
+
* Added support for Ruby 3.4.0.
|
43
|
+
|
44
|
+
## 3.6.3 - 2024-11-24 {#version-3-6-3}
|
45
|
+
|
46
|
+
### Improvements
|
47
|
+
|
48
|
+
* Added support for thread based parallel test running. You can use
|
49
|
+
it by the `--parallel=thread` option. You can disable parallel
|
50
|
+
test running per test case by defining `parallel_safe?` class
|
51
|
+
method that returns `false`.
|
52
|
+
* GH-235
|
53
|
+
* Patch by Tsutomu Katsube
|
54
|
+
|
55
|
+
* Added the `--n-workers` option.
|
56
|
+
|
57
|
+
* Added the `--[no-]report-slow-tests` option. You can show the top
|
58
|
+
5 slow tests with this option.
|
59
|
+
* GH-253
|
60
|
+
* Patch by Tsutomu Katsube
|
61
|
+
|
62
|
+
* UI: console: Add support for outputting `Exception#cause`.
|
63
|
+
|
64
|
+
* Added support for inspecting `BasicObject`.
|
65
|
+
* GH-262.
|
66
|
+
* Patch by Yuta Saito
|
67
|
+
|
68
|
+
### Thanks
|
69
|
+
|
70
|
+
* Tsutomu Katsube
|
71
|
+
|
72
|
+
* Yuta Saito
|
73
|
+
|
74
|
+
## 3.6.2 - 2024-02-16 {#version-3-6-2}
|
75
|
+
|
76
|
+
### Improvements
|
77
|
+
|
78
|
+
* UI: console: Add `--gc-stress` option that enables `GC.stress`
|
79
|
+
only whie each test is running.
|
80
|
+
|
81
|
+
* Added support for Ruby 3.4 style backtrace.
|
82
|
+
[GH-237][https://github.com/test-unit/test-unit/issues/237]
|
83
|
+
[Patch by Yusuke Endoh]
|
84
|
+
|
85
|
+
### Thanks
|
86
|
+
|
87
|
+
* Yusuke Endoh
|
88
|
+
|
89
|
+
## 3.6.1 - 2023-06-25 {#version-3-6-1}
|
90
|
+
|
91
|
+
### Improvements
|
92
|
+
|
93
|
+
* collector: load: Improved performance when a large number of test
|
94
|
+
files exist.
|
95
|
+
[GH-232][https://github.com/test-unit/test-unit/issues/232]
|
96
|
+
[Patch by akira yamada]
|
97
|
+
|
98
|
+
### Thanks
|
99
|
+
|
100
|
+
* akira yamada
|
101
|
+
|
102
|
+
## 3.6.0 - 2023-05-25 {#version-3-6-0}
|
103
|
+
|
104
|
+
### Improvements
|
105
|
+
|
106
|
+
* UI: console: Use `--progress-style=fault-only` with non-tty output
|
107
|
+
by default.
|
108
|
+
|
109
|
+
## 3.5.9 - 2023-05-25 {#version-3-5-9}
|
110
|
+
|
111
|
+
### Improvements
|
112
|
+
|
113
|
+
* UI: console: Use `--progress-style=mark` with `--verbose=verbose`
|
114
|
+
by default.
|
115
|
+
|
116
|
+
## 3.5.8 - 2023-05-12 {#version-3-5-8}
|
117
|
+
|
118
|
+
### Improvements
|
119
|
+
|
120
|
+
* doc: Improved document for multi Ractor mode.
|
121
|
+
[GH-226][https://github.com/test-unit/test-unit/issues/226]
|
122
|
+
[Patch by Luke Gruber]
|
123
|
+
|
124
|
+
* doc: Updated minitest's URL.
|
125
|
+
[GH-228][https://github.com/test-unit/test-unit/issues/228]
|
126
|
+
[Patch by Koichi ITO]
|
127
|
+
|
128
|
+
* UI: console: Added `--progress-style` option.
|
129
|
+
|
130
|
+
* UI: console: Compacted `--verbose=important-only` output..
|
131
|
+
|
132
|
+
* UI: console: Changed the default output level to `important-only`
|
133
|
+
on GitHub Actions.
|
134
|
+
|
135
|
+
### Thanks
|
136
|
+
|
137
|
+
* Luke Gruber
|
138
|
+
|
139
|
+
* Koichi ITO
|
140
|
+
|
141
|
+
## 3.5.7 - 2022-12-15 {#version-3-5-7}
|
142
|
+
|
143
|
+
### Improvements
|
144
|
+
|
145
|
+
* [UI][console]: Changed to use color escape sequence for each line
|
146
|
+
instead of each output that may consist with multiple lines.
|
147
|
+
|
148
|
+
## 3.5.6 - 2022-12-15 {#version-3-5-6}
|
149
|
+
|
150
|
+
### Improvements
|
151
|
+
|
152
|
+
* [UI][console]: Enabled 256 colors output on GitHub Actions by default.
|
153
|
+
|
154
|
+
## 3.5.5 - 2022-10-04 {#version-3-5-5}
|
155
|
+
|
156
|
+
### Fixes
|
157
|
+
|
158
|
+
* Suppressed a warning.
|
159
|
+
[GitHub#219](https://github.com/test-unit/test-unit/issues/219)[Patch by Kenichi Kamiya]
|
160
|
+
|
161
|
+
### Thanks
|
162
|
+
|
163
|
+
* Kenichi Kamiya
|
164
|
+
|
165
|
+
## 3.5.4 - 2022-10-04 {#version-3-5-4}
|
166
|
+
|
167
|
+
### Improvements
|
168
|
+
|
169
|
+
* Don't raise an error on `Test::Unit::TestCase.clone`.
|
170
|
+
[GitHub#210](https://github.com/test-unit/test-unit/issues/210)[Reported by David Marchaland]
|
171
|
+
|
172
|
+
* Added support for `BigDeciaml` in `assert_in_delta` family.
|
173
|
+
[GitHub#218](https://github.com/test-unit/test-unit/issues/218)[Patch by Kenta Murata]
|
174
|
+
|
175
|
+
### Thanks
|
176
|
+
|
177
|
+
* David Marchaland
|
178
|
+
|
179
|
+
* Kenta Murata
|
180
|
+
|
181
|
+
## 3.5.3 - 2021-12-20 {#version-3-5-3}
|
182
|
+
|
183
|
+
### Improvements
|
184
|
+
|
185
|
+
* Made how to sub test case generation customizable.
|
186
|
+
[GitHub#207](https://github.com/test-unit/test-unit/issues/207)[Patch by Akira Matsuda]
|
187
|
+
|
188
|
+
### Thanks
|
189
|
+
|
190
|
+
* Akira Matsuda
|
191
|
+
|
192
|
+
## 3.5.2 - 2021-12-10 {#version-3-5-2}
|
193
|
+
|
194
|
+
### Improvements
|
195
|
+
|
196
|
+
* Required `fileutils` lazy.
|
197
|
+
[GitHub#206](https://github.com/test-unit/test-unit/issues/206)[Patch by David Rodríguez]
|
198
|
+
|
199
|
+
### Thanks
|
200
|
+
|
201
|
+
* David Rodríguez
|
202
|
+
|
203
|
+
## 3.5.1 - 2021-11-08 {#version-3-5-1}
|
204
|
+
|
205
|
+
### Fixes
|
206
|
+
|
207
|
+
* Fixed a bug that `keep: true` is ignored when data set is
|
208
|
+
generated by block. [Reported by Kenta Murata]
|
209
|
+
|
210
|
+
### Thanks
|
211
|
+
|
212
|
+
* Kenta Murata
|
213
|
+
|
214
|
+
## 3.5.0 - 2021-10-18 {#version-3-5-0}
|
215
|
+
|
216
|
+
### Fixes
|
217
|
+
|
218
|
+
* Fixed a bug that `keep: true` is ignored when the last `data`
|
219
|
+
doesn't have `keep: true`.
|
220
|
+
|
221
|
+
## 3.4.9 - 2021-10-18 {#version-3-4-9}
|
222
|
+
|
223
|
+
### Improvements
|
224
|
+
|
225
|
+
* Added support for labeling each variable values by using `Hash`.
|
226
|
+
|
227
|
+
## 3.4.8 - 2021-10-11 {#version-3-4-8}
|
228
|
+
|
229
|
+
### Improvements
|
230
|
+
|
231
|
+
* Added support for omitting Ractor tests on Ruby 2.7 or earlier
|
232
|
+
automatically.
|
233
|
+
|
234
|
+
## 3.4.7 - 2021-09-14 {#version-3-4-7}
|
235
|
+
|
236
|
+
### Fixes
|
237
|
+
|
238
|
+
* Suppressed a warning on Ruby 2.
|
239
|
+
[GitHub#205](https://github.com/test-unit/test-unit/issues/205)[Patch by Kenichi Kamiya]
|
240
|
+
|
241
|
+
### Thanks
|
242
|
+
|
243
|
+
* Kenichi Kamiya
|
244
|
+
|
245
|
+
## 3.4.6 - 2021-09-11 {#version-3-4-6}
|
246
|
+
|
247
|
+
### Improvements
|
248
|
+
|
249
|
+
* Added support for tests that use Ractor. Use
|
250
|
+
`Test::Unit::TestCase.ractor` to declare that these tests use
|
251
|
+
Ractor.
|
252
|
+
|
253
|
+
* Added `--debug-on-failure` option.
|
254
|
+
|
255
|
+
## 3.4.5 - 2021-09-04 {#version-3-4-5}
|
256
|
+
|
257
|
+
### Improvements
|
258
|
+
|
259
|
+
* Added more metadata to gemspec.
|
260
|
+
[GitHub#183](https://github.com/test-unit/test-unit/issues/183)[Patch by Kenichi Kamiya]
|
261
|
+
|
262
|
+
* Removed needless files from gem.
|
263
|
+
[GitHub#184](https://github.com/test-unit/test-unit/issues/184)[Patch by Kenichi Kamiya]
|
264
|
+
|
265
|
+
* Updated documents.
|
266
|
+
[GitHub#191](https://github.com/test-unit/test-unit/issues/191)[GitHub#192](https://github.com/test-unit/test-unit/issues/192)[GitHub#193](https://github.com/test-unit/test-unit/issues/193)[GitHub#199](https://github.com/test-unit/test-unit/issues/199)[GitHub#200](https://github.com/test-unit/test-unit/issues/200)
|
267
|
+
[GitHub#201](https://github.com/test-unit/test-unit/issues/201)[Patch by Kenichi Kamiya]
|
268
|
+
|
269
|
+
* Added `assert_nothing_leaked_memory`.
|
270
|
+
|
271
|
+
### Fixes
|
272
|
+
|
273
|
+
* Fixed typos in documents.
|
274
|
+
[GitHub#189](https://github.com/test-unit/test-unit/issues/189)[GitHub#190](https://github.com/test-unit/test-unit/issues/190)[GitHub#195](https://github.com/test-unit/test-unit/issues/195)[GitHub#197](https://github.com/test-unit/test-unit/issues/197)[Patch by Kenichi Kamiya]
|
275
|
+
|
276
|
+
### Thanks
|
277
|
+
|
278
|
+
* Kenichi Kamiya
|
279
|
+
|
280
|
+
## 3.4.4 - 2021-06-04 {#version-3-4-4}
|
281
|
+
|
282
|
+
### Improvements
|
283
|
+
|
284
|
+
* Renamed `assert_all?` to `assert_all`. `assert_all?` is deprecated
|
285
|
+
but is available.
|
286
|
+
|
287
|
+
## 3.4.3 - 2021-06-04 {#version-3-4-3}
|
288
|
+
|
289
|
+
### Improvements
|
290
|
+
|
291
|
+
* Stopped to change result value of `Test::Unit::TestCase#include`.
|
292
|
+
|
293
|
+
* Added `assert_all?`.
|
294
|
+
|
295
|
+
* Added support for `assert_raise_with_message`.
|
296
|
+
|
297
|
+
## 3.4.2 - 2021-05-30 {#version-3-4-2}
|
298
|
+
|
299
|
+
### Improvements
|
300
|
+
|
301
|
+
* [UI][console]: Improved diff readability for no color
|
302
|
+
case. Character based diff marks are always showed.
|
303
|
+
|
304
|
+
## 3.4.1 - 2021-04-19 {#version-3-4-1}
|
305
|
+
|
306
|
+
### Fixes
|
307
|
+
|
308
|
+
* Fixed a bug that `setup`/`cleanup`/`teardown` with block may be
|
309
|
+
overwritten by another `setup`/`cleanup`/`teardown` with
|
310
|
+
block. It's caused only with Ruby 2.6 or earlier.
|
311
|
+
[GitHub#179](https://github.com/test-unit/test-unit/issues/179)[Reported by akira yamada]
|
312
|
+
|
313
|
+
### Thanks
|
314
|
+
|
315
|
+
* akira yamada
|
316
|
+
|
317
|
+
## 3.4.0 - 2021-01-30 {#version-3-4-0}
|
318
|
+
|
319
|
+
### Improvements
|
320
|
+
|
321
|
+
* Enable deprecated warnings by default.
|
322
|
+
|
323
|
+
## 3.3.9 - 2020-12-29 {#version-3-3-9}
|
324
|
+
|
325
|
+
### Improvements
|
326
|
+
|
327
|
+
* `assert_not_match`: Add support for `String` as pattern.
|
328
|
+
[GitHub#178](https://github.com/test-unit/test-unit/issues/178)[Patch by David Rodríguez]
|
329
|
+
|
330
|
+
### Thanks
|
331
|
+
|
332
|
+
* David Rodríguez
|
333
|
+
|
334
|
+
## 3.3.8 - 2020-12-25 {#version-3-3-8}
|
335
|
+
|
336
|
+
### Improvements
|
337
|
+
|
338
|
+
* [UI][console]: Removed reverse mode because Ruby 3.0 reverts
|
339
|
+
reverse backtrace.
|
340
|
+
|
341
|
+
## 3.3.7 - 2020-11-18 {#version-3-3-7}
|
342
|
+
|
343
|
+
### Improvements
|
344
|
+
|
345
|
+
* Improved TruffleRuby support.
|
346
|
+
[GitHub#171](https://github.com/test-unit/test-unit/issues/171)[Reported by Benoit Daloze]
|
347
|
+
|
348
|
+
* Removed needless `to_sym`.
|
349
|
+
[GitHub#177](https://github.com/test-unit/test-unit/issues/177)[Patch by icm7216]
|
350
|
+
|
351
|
+
* `assert_raise`: Added backtrace for actual error.
|
352
|
+
|
353
|
+
* Improved terminal color availability detection.
|
354
|
+
[GitHub#175](https://github.com/test-unit/test-unit/issues/175)[Patch by nicholas a. evans]
|
355
|
+
|
356
|
+
* Changed license to the new Ruby's.
|
357
|
+
[GitHub#174](https://github.com/test-unit/test-unit/issues/174)
|
358
|
+
|
359
|
+
### Fixes
|
360
|
+
|
361
|
+
* Fixed a typo in `--help` output:
|
362
|
+
[GitHub#176](https://github.com/test-unit/test-unit/issues/176)[Patch by icm7216]
|
363
|
+
|
364
|
+
### Thanks
|
365
|
+
|
366
|
+
* Benoit Daloze
|
367
|
+
|
368
|
+
* icm7216
|
369
|
+
|
370
|
+
* nicholas a. evans
|
371
|
+
|
372
|
+
## 3.3.6 - 2020-06-10 {#version-3-3-6}
|
373
|
+
|
374
|
+
### Improvements
|
375
|
+
|
376
|
+
* `name`, `--ignore-name`:
|
377
|
+
|
378
|
+
* Added support for regular expression options.
|
379
|
+
|
380
|
+
* Added support for matching with class name in exact match mode.
|
381
|
+
[Reported by Jun Aruga]
|
382
|
+
|
383
|
+
* Updated ruby-talk mailing list information
|
384
|
+
[GitHub#168](https://github.com/test-unit/test-unit/issues/168)[Patch by Chris Kampmeier]
|
385
|
+
|
386
|
+
### Thanks
|
387
|
+
|
388
|
+
* Chris Kampmeier
|
389
|
+
|
390
|
+
* Jun Aruga
|
391
|
+
|
392
|
+
## 3.3.5 - 2020-01-10 {#version-3-3-5}
|
393
|
+
|
394
|
+
### Improvements
|
395
|
+
|
396
|
+
* Improved code snippet showing with different default external encoding.
|
397
|
+
[GitHub#166](https://github.com/test-unit/test-unit/issues/166)[Patch by Yuta Iwama]
|
398
|
+
|
399
|
+
### Thanks
|
400
|
+
|
401
|
+
* Yuta Iwama
|
402
|
+
|
403
|
+
## 3.3.4 - 2019-09-30 {#version-3-3-4}
|
404
|
+
|
405
|
+
### Improvements
|
406
|
+
|
407
|
+
* Converted markup format to Markdown from RDoc.
|
408
|
+
[GitHub#164](https://github.com/test-unit/test-unit/issues/164)[Patch by OGAWA KenIchi]
|
409
|
+
|
410
|
+
* test: Stopped to depend on `Time#inspect` format.
|
411
|
+
[GitHub#165](https://github.com/test-unit/test-unit/issues/165)[Reported by Benoit Daloze]
|
412
|
+
|
413
|
+
### Thanks
|
414
|
+
|
415
|
+
* OGAWA KenIchi
|
416
|
+
|
417
|
+
* Benoit Daloze
|
418
|
+
|
419
|
+
## 3.3.3 - 2019-05-10 {#version-3-3-3}
|
420
|
+
|
421
|
+
### Fixed
|
422
|
+
|
423
|
+
* Fixed a bug that priority mode with test case name that uses
|
424
|
+
special characters such as `?` can't be used on Windows.
|
425
|
+
|
426
|
+
## 3.3.2 - 2019-04-11 {#version-3-3-2}
|
427
|
+
|
428
|
+
### Fixes
|
429
|
+
|
430
|
+
* Fixed a bug that `Test::Unit::Collector::Load` doesn't load test
|
431
|
+
files under sub directories when these files have the same base
|
432
|
+
name as test files in upper directories.
|
433
|
+
[Reported by Kenta Murata]
|
434
|
+
|
435
|
+
### Thanks
|
436
|
+
|
437
|
+
* Kenta Murata
|
438
|
+
|
439
|
+
## 3.3.1 - 2019-03-27 {#version-3-3-1}
|
440
|
+
|
441
|
+
### Improvements
|
442
|
+
|
443
|
+
* Added support for `Test::Unit::AssertionFailedError#user_message`
|
444
|
+
for not only `assert_equal` and `assert_raise` but also all
|
445
|
+
assertions.
|
446
|
+
[GitHub#162](https://github.com/test-unit/test-unit/issues/162)[Reported by xgraffm]
|
447
|
+
|
448
|
+
### Thanks
|
449
|
+
|
450
|
+
* xgraffm
|
451
|
+
|
452
|
+
## 3.3.0 - 2019-01-23 {#version-3-3-0}
|
453
|
+
|
454
|
+
### Improvements
|
455
|
+
|
456
|
+
* Added support for auto test run when all tests are defined in
|
457
|
+
modules.
|
458
|
+
|
459
|
+
* Added support for defining methods to test case class in multiple
|
460
|
+
threads.
|
461
|
+
[GitHub#159](https://github.com/test-unit/test-unit/issues/159)[Reported by Charles Oliver Nutter]
|
462
|
+
|
463
|
+
* Suppressed warnings on Ruby 2.5.
|
464
|
+
[GitHub#160](https://github.com/test-unit/test-unit/issues/160)[Reported by Daniel Berger]
|
465
|
+
|
466
|
+
* Suppressed warnings on Ruby 2.7.
|
467
|
+
|
468
|
+
### Fixes
|
469
|
+
|
470
|
+
* Fixed a code snippet fetch failure when source code isn't UTF-8
|
471
|
+
and the default external encoding is set to not UTF-8.
|
472
|
+
[GitHub#161](https://github.com/test-unit/test-unit/issues/161)[Reported by masa kunikata]
|
473
|
+
|
474
|
+
### Thanks
|
475
|
+
|
476
|
+
* Charles Oliver Nutter
|
477
|
+
|
478
|
+
* Daniel Berger
|
479
|
+
|
480
|
+
* masa kunikata
|
481
|
+
|
482
|
+
## 3.2.9 - 2018-12-01 {#version-3-2-9}
|
483
|
+
|
484
|
+
### Improvements
|
485
|
+
|
486
|
+
* Added support for data generation by method. `data_#{test_name}`
|
487
|
+
is called to generate data for `test_name` test.
|
488
|
+
|
489
|
+
* Added support for data matrix generation.
|
490
|
+
|
491
|
+
Example:
|
492
|
+
|
493
|
+
```ruby
|
494
|
+
data(:a, [0, 1, 2])
|
495
|
+
data(:b, [:x, :y])
|
496
|
+
def test_data(data)
|
497
|
+
end
|
498
|
+
```
|
499
|
+
|
500
|
+
This example generates the following data matrix:
|
501
|
+
|
502
|
+
* label: `"a: 0, b: :x"`, data: `{a: 0, b: :x}`
|
503
|
+
* label: `"a: 0, b: :y"`, data: `{a: 0, b: :y}`
|
504
|
+
* label: `"a: 1, b: :x"`, data: `{a: 1, b: :x}`
|
505
|
+
* label: `"a: 1, b: :y"`, data: `{a: 1, b: :y}`
|
506
|
+
* label: `"a: 2, b: :x"`, data: `{a: 2, b: :x}`
|
507
|
+
* label: `"a: 2, b: :y"`, data: `{a: 2, b: :y}`
|
508
|
+
|
509
|
+
* Added `Test::Unit::TestCase#data` that returns the current data.
|
510
|
+
|
511
|
+
* Added support for using test method that doesn't have no
|
512
|
+
parameters as data driven test.
|
513
|
+
|
514
|
+
Example:
|
515
|
+
|
516
|
+
```ruby
|
517
|
+
data("label", :value)
|
518
|
+
def test_data # Available since this release
|
519
|
+
p data # :value
|
520
|
+
end
|
521
|
+
```
|
522
|
+
|
523
|
+
* Added support for `:keep` option to `Test::Unit::TestCase.data`.
|
524
|
+
|
525
|
+
* Added support for `:group` option to
|
526
|
+
`Test::Unit::TestCase.data`. It's useful to generate multiple data
|
527
|
+
matrix groups.
|
528
|
+
|
529
|
+
```ruby
|
530
|
+
# Group1
|
531
|
+
data(:a, [0, 1, 2], group: :g1)
|
532
|
+
data(:b, [:x, :y], group: :g1)
|
533
|
+
# Group2
|
534
|
+
data(:a, [:x, :y], group: :g2)
|
535
|
+
data(:c, [-1, -2], group: :g2)
|
536
|
+
def test_data(data)
|
537
|
+
end
|
538
|
+
```
|
539
|
+
|
540
|
+
This example generates the following data matrix:
|
541
|
+
|
542
|
+
* label: `"group: :g1, a: 0, b: :x"`, data: `{a: 0, b: :x}`
|
543
|
+
* label: `"group: :g1, a: 0, b: :y"`, data: `{a: 0, b: :y}`
|
544
|
+
* label: `"group: :g1, a: 1, b: :x"`, data: `{a: 1, b: :x}`
|
545
|
+
* label: `"group: :g1, a: 1, b: :y"`, data: `{a: 1, b: :y}`
|
546
|
+
* label: `"group: :g1, a: 2, b: :x"`, data: `{a: 2, b: :x}`
|
547
|
+
* label: `"group: :g1, a: 2, b: :y"`, data: `{a: 2, b: :y}`
|
548
|
+
* label: `"group: :g2, a: :x, b: -1"`, data: `{a: :x, b: -1}`
|
549
|
+
* label: `"group: :g2, a: :x, b: -2"`, data: `{a: :x, b: -2}`
|
550
|
+
* label: `"group: :g2, a: :y, b: -1"`, data: `{a: :y, b: -1}`
|
551
|
+
* label: `"group: :g2, a: :y, b: -2"`, data: `{a: :y, b: -2}`
|
552
|
+
|
553
|
+
## 3.2.8 - 2018-05-13 {#version-3-2-8}
|
554
|
+
|
555
|
+
### Improvements
|
556
|
+
|
557
|
+
* [UI][console]: Changed to put code snippet before backtrace on
|
558
|
+
reverse mode.
|
559
|
+
|
560
|
+
## 3.2.7 - 2017-12-12 {#version-3-2-7}
|
561
|
+
|
562
|
+
### Improvements
|
563
|
+
|
564
|
+
* Added source code link to gemspec.
|
565
|
+
[GitHub#157](https://github.com/test-unit/test-unit/issues/157)[Patch by Grey Baker]
|
566
|
+
|
567
|
+
* Changed to use SVG image for badges in README.
|
568
|
+
[GitHub#158](https://github.com/test-unit/test-unit/issues/158)[Patch by Olle Jonsson]
|
569
|
+
|
570
|
+
* [UI][console]: Added `--reverse-output` option to output fault
|
571
|
+
details in reverse like Ruby 2.5. It's enabled by default only for
|
572
|
+
tty output.
|
573
|
+
|
574
|
+
### Fixes
|
575
|
+
|
576
|
+
* Fixed a typo.
|
577
|
+
[GitHub#156](https://github.com/test-unit/test-unit/issues/156)[Patch by masa kunikata]
|
578
|
+
|
579
|
+
* [UI][console]: Fixed a bug that broken align in verbose mode.
|
580
|
+
|
581
|
+
### Thanks
|
582
|
+
|
583
|
+
* masa kunikata
|
584
|
+
|
585
|
+
* Grey Baker
|
586
|
+
|
587
|
+
* Olle Jonsson
|
588
|
+
|
589
|
+
## 3.2.6 - 2017-09-21 {#version-3-2-6}
|
590
|
+
|
591
|
+
### Improvements
|
592
|
+
|
593
|
+
* Changed test file require failure to error from omission.
|
594
|
+
[GitHub#154](https://github.com/test-unit/test-unit/issues/154)[Patch by naofumi-fujii]
|
595
|
+
|
596
|
+
### Thanks
|
597
|
+
|
598
|
+
* naofumi-fujii
|
599
|
+
|
600
|
+
## 3.2.5 - 2017-06-24 {#version-3-2-5}
|
601
|
+
|
602
|
+
### Improvements
|
603
|
+
|
604
|
+
* Supported `--enable-frozen-string-literal` `ruby` option.
|
605
|
+
[GitHub#149](https://github.com/test-unit/test-unit/issues/149)[Reported by Pat Allan]
|
606
|
+
|
607
|
+
### Thanks
|
608
|
+
|
609
|
+
* Pat Allan
|
610
|
+
|
611
|
+
## 3.2.4 - 2017-05-23 {#version-3-2-4}
|
612
|
+
|
613
|
+
### Improvements
|
614
|
+
|
615
|
+
* Updated tests for Ruby 2.4. [GitHUb#136][Patch by Kazuki Tsujimoto]
|
616
|
+
|
617
|
+
* Supported power\_assert 1.0.0. [GitHub#137](https://github.com/test-unit/test-unit/issues/137)[Patch by Kazuki Tsujimoto]
|
618
|
+
|
619
|
+
* Added the getting started document.
|
620
|
+
[GitHub#139](https://github.com/test-unit/test-unit/issues/139)[GitHub#141](https://github.com/test-unit/test-unit/issues/141)[Patch by Hiroyuki Sato]
|
621
|
+
|
622
|
+
* Added the document for `attribute`.
|
623
|
+
[GitHub#143](https://github.com/test-unit/test-unit/issues/143)[Patch by Fumiaki MATSUSHIMA]
|
624
|
+
|
625
|
+
* Improved a link for GitHub. [GitHub#144](https://github.com/test-unit/test-unit/issues/144)[Patch by rochefort]
|
626
|
+
|
627
|
+
* Updated `.travis.yml`. [GitHub#145](https://github.com/test-unit/test-unit/issues/145)[Patch by Jun Aruga]
|
628
|
+
|
629
|
+
### Fixes
|
630
|
+
|
631
|
+
* Fixed a contributor name. [GitHub#131](https://github.com/test-unit/test-unit/issues/131)[Patch by Akira Matsuda]
|
632
|
+
|
633
|
+
* Fixed typos in document. [GitHub#132](https://github.com/test-unit/test-unit/issues/132)[Patch by Akira Matsuda]
|
634
|
+
|
635
|
+
* Fixed typos in document. [GitHub#134](https://github.com/test-unit/test-unit/issues/134)[Patch by Yuji Yaginuma]
|
636
|
+
|
637
|
+
* Fixed a bug that data label with "(" isn't supported.
|
638
|
+
[GitHub#135](https://github.com/test-unit/test-unit/issues/135)[Reported by Kazuki Tsujimoto]
|
639
|
+
|
640
|
+
* Fixed assertion message in English.
|
641
|
+
[GitHub#133](https://github.com/test-unit/test-unit/issues/133)[Reported by Khalil Fazal]
|
642
|
+
|
643
|
+
* Fixed a typo in typo fix. [GitHub#138](https://github.com/test-unit/test-unit/issues/138)[Patch by kami]
|
644
|
+
|
645
|
+
* Fixed a bug that target location finder may return wrong
|
646
|
+
location. [GitHub#146](https://github.com/test-unit/test-unit/issues/146)[Patch by Yuki Ito]
|
647
|
+
|
648
|
+
* Fixed a bug that `--no-show-detail-immediately` raises an error.
|
649
|
+
[GitHub#147](https://github.com/test-unit/test-unit/issues/147)[Reported by MSP-Greg]
|
650
|
+
|
651
|
+
### Thanks
|
652
|
+
|
653
|
+
* Akira Matsuda
|
654
|
+
|
655
|
+
* Yuji Yaginuma
|
656
|
+
|
657
|
+
* Kazuki Tsujimoto
|
658
|
+
|
659
|
+
* Khalil Fazal
|
660
|
+
|
661
|
+
* kami
|
662
|
+
|
663
|
+
* Hiroyuki Sato
|
664
|
+
|
665
|
+
* Fumiaki MATSUSHIMA
|
666
|
+
|
667
|
+
* rochefort
|
668
|
+
|
669
|
+
* Jun Aruga
|
670
|
+
|
671
|
+
* Yuki Ito
|
672
|
+
|
673
|
+
* MSP-Greg
|
674
|
+
|
675
|
+
## 3.2.3 - 2016-11-25 {#version-3-2-3}
|
676
|
+
|
677
|
+
### Fixes
|
678
|
+
|
679
|
+
* Fixed a bug that `--order` isn't applied.
|
680
|
+
[GitHub#129](https://github.com/test-unit/test-unit/issues/129)[Reported by Vít Ondruch]
|
681
|
+
|
682
|
+
### Thanks
|
683
|
+
|
684
|
+
* Vít Ondruch
|
685
|
+
|
686
|
+
## 3.2.2 - 2016-11-02 {#version-3-2-2}
|
687
|
+
|
688
|
+
### Improvements
|
689
|
+
|
690
|
+
* Improved Travis CI configuration.
|
691
|
+
[GitHub#123](https://github.com/test-unit/test-unit/issues/123)[Patch by Ryunosuke Sato]
|
692
|
+
|
693
|
+
* Supported Java native exception.
|
694
|
+
[GitHub#126](https://github.com/test-unit/test-unit/issues/126)[Reported by Bob Saveland]
|
695
|
+
|
696
|
+
### Fixes
|
697
|
+
|
698
|
+
* doc: Fixed markup. [GitHub#127](https://github.com/test-unit/test-unit/issues/127)[Patch by Tomohiro Hashidate]
|
699
|
+
|
700
|
+
* Fixed a bug that `--location=LINE` may not detect a test when
|
701
|
+
fixtures are defined before any tests:
|
702
|
+
|
703
|
+
1 class MyTestCase < Test::Unit::TestCase
|
704
|
+
2 setup do
|
705
|
+
3 end
|
706
|
+
4
|
707
|
+
5 test "xxx" do
|
708
|
+
6 end
|
709
|
+
7 end
|
710
|
+
|
711
|
+
`--location=5` couldn't find the `xxx` test.
|
712
|
+
|
713
|
+
[Reported by Ryota Sasabe]
|
714
|
+
|
715
|
+
### Thanks
|
716
|
+
|
717
|
+
* Ryunosuke Sato
|
718
|
+
|
719
|
+
* Tomohiro Hashidate
|
720
|
+
|
721
|
+
* Bob Saveland
|
722
|
+
|
723
|
+
* Ryota Sasabe
|
724
|
+
|
725
|
+
## 3.2.1 - 2016-07-19 {#version-3-2-1}
|
726
|
+
|
727
|
+
### Improvements
|
728
|
+
|
729
|
+
* Clarified lib/test/unit/diff.rb license. It's a triple license of
|
730
|
+
the Ruby license, PSF license and LGPLv2.1 or later.
|
731
|
+
[Reported by Luisa Pace]
|
732
|
+
|
733
|
+
* Reported norification when data driven test doesn't have
|
734
|
+
parameter.
|
735
|
+
[GitHub#122](https://github.com/test-unit/test-unit/issues/122)[Reported by Satoshi "Moris" Tagomori]
|
736
|
+
|
737
|
+
### Thanks
|
738
|
+
|
739
|
+
* Luisa Pace
|
740
|
+
|
741
|
+
* Satoshi "Moris" Tagomori
|
742
|
+
|
743
|
+
## 3.2.0 - 2016-06-12 {#version-3-2-0}
|
744
|
+
|
745
|
+
### Improvements
|
746
|
+
|
747
|
+
* Supported rxvt family terminals as color available terminals.
|
748
|
+
[GitHub#121](https://github.com/test-unit/test-unit/issues/121)[Reported by Ippei Kishida]
|
749
|
+
|
750
|
+
### Thanks
|
751
|
+
|
752
|
+
* Ippei Kishida
|
753
|
+
|
754
|
+
## 3.1.9 - 2016-05-20 {#version-3-1-9}
|
755
|
+
|
756
|
+
### Fixes
|
757
|
+
|
758
|
+
* Fixed conflict with test-unit-power_assert.
|
759
|
+
[GitHub#120](https://github.com/test-unit/test-unit/issues/120)[Patch by Kazuki Tsujimoto]
|
760
|
+
|
761
|
+
* Fixed a bug that path in `$LOAD_PATH` may be removed.
|
762
|
+
|
763
|
+
### Thanks
|
764
|
+
|
765
|
+
* Kazuki Tsujimoto
|
766
|
+
|
767
|
+
## 3.1.8 - 2016-03-19 {#version-3-1-8}
|
768
|
+
|
769
|
+
### Improvements
|
770
|
+
|
771
|
+
* Added `--stop-on-failure` command line option. With this option,
|
772
|
+
running test suite is stopped immediately when one test is failed
|
773
|
+
or an error is raised in one test.
|
774
|
+
|
775
|
+
## 3.1.7 - 2016-01-17 {#version-3-1-7}
|
776
|
+
|
777
|
+
### Fixes
|
778
|
+
|
779
|
+
* Added a missing require.
|
780
|
+
|
781
|
+
## 3.1.6 - 2016-01-17 {#version-3-1-6}
|
782
|
+
|
783
|
+
It's a Ruby on Rails integration improvement release.
|
784
|
+
|
785
|
+
### Improvements
|
786
|
+
|
787
|
+
* Filtered backtrace of power\_assert.
|
788
|
+
[GitHub#114](https://github.com/test-unit/test-unit/issues/114)
|
789
|
+
* Improved performance to retrieve test defined location.
|
790
|
+
* Improved performance to run fixtures in a test.
|
791
|
+
* Supported running a test by `yield` in `setup`:
|
792
|
+
|
793
|
+
Before:
|
794
|
+
|
795
|
+
def setup
|
796
|
+
@file = File.open("x")
|
797
|
+
end
|
798
|
+
|
799
|
+
def teardown
|
800
|
+
@file.close
|
801
|
+
end
|
802
|
+
|
803
|
+
After:
|
804
|
+
|
805
|
+
def setup
|
806
|
+
File.open("x") do |file|
|
807
|
+
@file = file
|
808
|
+
yield
|
809
|
+
end
|
810
|
+
end
|
811
|
+
|
812
|
+
* Added `--default-test-path` option that specifies the default path
|
813
|
+
that has tests.
|
814
|
+
* Made auto runner registration more lazily. Auto runner isn't
|
815
|
+
registered automatically until user defines a test. In the
|
816
|
+
previous releases, auto runner is registered automatically when
|
817
|
+
user defines a test case.
|
818
|
+
* Supported specifying a test by location in command line. For
|
819
|
+
example, the following command line runs a test that is defined in
|
820
|
+
/tmp/test_a.rb at line 10:
|
821
|
+
|
822
|
+
% ruby -r test-unit -e run_test /tmp/test_a.rb:10
|
823
|
+
|
824
|
+
### Fixes
|
825
|
+
|
826
|
+
* Fixed a bug that test isn't ran. The test has the same name as
|
827
|
+
data driven test that is defined in parent test case.
|
828
|
+
[GitHub#115](https://github.com/test-unit/test-unit/issues/115)
|
829
|
+
|
830
|
+
## 3.1.5 - 2015-10-09 {#version-3-1-5}
|
831
|
+
|
832
|
+
It's a Rack integration improvement release.
|
833
|
+
|
834
|
+
### Improvements
|
835
|
+
|
836
|
+
* Renamed experimental top-level `run` method to `run_test` method
|
837
|
+
because `run` is conflicted with Rack.
|
838
|
+
[GitHub#32](https://github.com/test-unit/test-unit/issues/32)[GitHub:basecamp/pow#303] [Reported by Yevhen Viktorov]
|
839
|
+
|
840
|
+
### Thanks
|
841
|
+
|
842
|
+
* Yevhen Viktorov
|
843
|
+
|
844
|
+
## 3.1.4 - 2015-09-26 {#version-3-1-4}
|
845
|
+
|
846
|
+
It's a minor improvement release.
|
847
|
+
|
848
|
+
### Improvements
|
849
|
+
|
850
|
+
* Updated sample code. [GitHub#109](https://github.com/test-unit/test-unit/issues/109)[Patch by takiy33]
|
851
|
+
* Updated .travis.yml. [GitHub#110](https://github.com/test-unit/test-unit/issues/110)[Patch by takiy33]
|
852
|
+
* document: Added table header in how to document.
|
853
|
+
[GitHub#111](https://github.com/test-unit/test-unit/issues/111)[Patch by takiy33]
|
854
|
+
* Removed duplicated code.
|
855
|
+
[GitHub#112](https://github.com/test-unit/test-unit/issues/112)[Patch by takiy33]
|
856
|
+
* Removed needless encoding conversion in fetching code snippet.
|
857
|
+
[GitHub#113](https://github.com/test-unit/test-unit/issues/113)[Patch by NARUSE, Yui]
|
858
|
+
|
859
|
+
### Thanks
|
860
|
+
|
861
|
+
* takiy33
|
862
|
+
* NARUSE, Yui
|
863
|
+
|
864
|
+
## 3.1.3 - 2015-07-26 {#version-3-1-3}
|
865
|
+
|
866
|
+
It's a bug fix release.
|
867
|
+
|
868
|
+
### Improvements
|
869
|
+
|
870
|
+
* Removed unused `TODO` file. [GitHub#108](https://github.com/test-unit/test-unit/issues/108)[Patch by takiy33]
|
871
|
+
|
872
|
+
### Fixes
|
873
|
+
|
874
|
+
* `--location`: Fixed a bug that `--location LINE` doesn't work when
|
875
|
+
test script is specified as relative path. [Reported by TOMITA Masahiro]
|
876
|
+
|
877
|
+
The following doesn't work:
|
878
|
+
|
879
|
+
% ruby ./test.rb --location 10
|
880
|
+
|
881
|
+
The following works:
|
882
|
+
|
883
|
+
% ruby test.rb --location 10
|
884
|
+
|
885
|
+
### Thanks
|
886
|
+
|
887
|
+
* takiy33
|
888
|
+
* TOMITA Masahiro
|
889
|
+
|
890
|
+
## 3.1.2 - 2015-06-09 {#version-3-1-2}
|
891
|
+
|
892
|
+
It's command line option improvements fix release.
|
893
|
+
|
894
|
+
### Improvements
|
895
|
+
|
896
|
+
* `--location`: Made path match rule more strict.
|
897
|
+
[Suggested by kimura wataru]
|
898
|
+
* Before:
|
899
|
+
* If test defined path ends with the specified path, the test is
|
900
|
+
matched.
|
901
|
+
* After:
|
902
|
+
* If base name of test defined path equals to the specified
|
903
|
+
path, the test is matched.
|
904
|
+
* If relative path of test defined path equals to the specified
|
905
|
+
path, the test is matched.
|
906
|
+
* If the specified path is absolute path and test defined path
|
907
|
+
equals to the specified path, the test is matched.
|
908
|
+
* `--pattern`: If the option is specified, the default patterns
|
909
|
+
aren't used. In the earlier versions, both the default patterns
|
910
|
+
and the specified patterns are used.
|
911
|
+
[Suggested by kimura wataru]
|
912
|
+
|
913
|
+
### Thanks
|
914
|
+
|
915
|
+
* kimura wataru
|
916
|
+
|
917
|
+
## 3.1.1 - 2015-05-29 {#version-3-1-1}
|
918
|
+
|
919
|
+
It's a bug fix release.
|
920
|
+
|
921
|
+
### Fixes
|
922
|
+
|
923
|
+
* Fixed a bug that `--location` detects tests not only in sub test
|
924
|
+
case but also parent test case.
|
925
|
+
[GitHub#105](https://github.com/test-unit/test-unit/issues/105)[Reported by wanabe]
|
926
|
+
|
927
|
+
### Thanks
|
928
|
+
|
929
|
+
* wanabe
|
930
|
+
|
931
|
+
## 3.1.0 - 2015-05-28 {#version-3-1-0}
|
932
|
+
|
933
|
+
It's a bug fix release.
|
934
|
+
|
935
|
+
### Improvements
|
936
|
+
|
937
|
+
* [ui][console] Removed needless new line.
|
938
|
+
|
939
|
+
### Fixes
|
940
|
+
|
941
|
+
* Fixed a bug that priority mode can't be used on Windows.
|
942
|
+
[GitHub#95](https://github.com/test-unit/test-unit/issues/95)[Reported by Daniel Berger]
|
943
|
+
* Fixed a homepage URL RubyGems spec.
|
944
|
+
[GitHub#96](https://github.com/test-unit/test-unit/issues/96)[Patch by Masayoshi Takahashi]
|
945
|
+
supported.) [GitHub#89](https://github.com/test-unit/test-unit/issues/89)[Patch by Aaron Stone]
|
946
|
+
* Fixed a bug that shutdown hook isn't called when pass throw
|
947
|
+
exception such as `Interrupt` is raised.
|
948
|
+
[GitHub#98](https://github.com/test-unit/test-unit/issues/98)[Reported by jeremiahishere.]
|
949
|
+
* Fixed typos in documents.
|
950
|
+
[GitHub#100](https://github.com/test-unit/test-unit/issues/100)[Reported by scivola]
|
951
|
+
[GitHub#102](https://github.com/test-unit/test-unit/issues/102)[GitHub#103](https://github.com/test-unit/test-unit/issues/103)[Patch by Masafumi Yokoyama]
|
952
|
+
* Fixed a bug that the same name test isn't executed in sub test case.
|
953
|
+
[GitHub#104](https://github.com/test-unit/test-unit/issues/104)[Reported by wanabe]
|
954
|
+
|
955
|
+
### Thanks
|
956
|
+
|
957
|
+
* Daniel Berger
|
958
|
+
* Masayoshi Takahashi
|
959
|
+
* jeremiahishere
|
960
|
+
* scivola
|
961
|
+
* Masafumi Yokoyama
|
962
|
+
* wanabe
|
963
|
+
|
964
|
+
## 3.0.9 - 2014-12-31 {#version-3-0-9}
|
965
|
+
|
966
|
+
It's a release that improves colors.
|
967
|
+
|
968
|
+
### Improvements
|
969
|
+
|
970
|
+
* Added a work around for Ruby 1.8. (Note: Ruby 1.8 isn't
|
971
|
+
supported.) [GitHub#89](https://github.com/test-unit/test-unit/issues/89)[Patch by Aaron Stone]
|
972
|
+
* Supported colorized output on Windows.
|
973
|
+
[GitHub#90](https://github.com/test-unit/test-unit/issues/90)[Patch by usa]
|
974
|
+
* Improved colorized output.
|
975
|
+
http://www.a-k-r.org/d/2014-12.html#a2014_12_27_1
|
976
|
+
[Suggested by Tanaka Akira]
|
977
|
+
|
978
|
+
### Thanks
|
979
|
+
|
980
|
+
* Aaron Stone
|
981
|
+
* usa
|
982
|
+
* Tanaka Akira
|
983
|
+
|
984
|
+
## 3.0.8 - 2014-12-12 {#version-3-0-8}
|
985
|
+
|
986
|
+
It's a release that supports Ruby 2.2.0 preview2.
|
987
|
+
|
988
|
+
### Improvements
|
989
|
+
|
990
|
+
* Added a link for YARD in README.
|
991
|
+
[GitHub:test-unit.github.io#2][Reported by sunnyone]
|
992
|
+
* Added description about "/PATTERN/" style value in auto runner usage.
|
993
|
+
[GitHub#86](https://github.com/test-unit/test-unit/issues/86)[Suggested by sunnyone]
|
994
|
+
* Supported Ruby 2.2.0 preview2 in `assert_throw` and
|
995
|
+
`assert_nothing_thrown`.
|
996
|
+
|
997
|
+
### Fixes
|
998
|
+
|
999
|
+
* Fixed a bug that error report is failed when source encoding and
|
1000
|
+
locale encoding are different.
|
1001
|
+
[GitHub#87](https://github.com/test-unit/test-unit/issues/87)[Reported by scivola]
|
1002
|
+
|
1003
|
+
### Thanks
|
1004
|
+
|
1005
|
+
* sunnyone
|
1006
|
+
* scivola
|
1007
|
+
|
1008
|
+
## 3.0.7 - 2014-11-14 {#version-3-0-7}
|
1009
|
+
|
1010
|
+
It's a minor update release.
|
1011
|
+
|
1012
|
+
### Fixes
|
1013
|
+
|
1014
|
+
* Fixed a bug that teardown blocks aren't called with sub class to
|
1015
|
+
parent class order.
|
1016
|
+
[GitHub#85](https://github.com/test-unit/test-unit/issues/85)[Reported by TOMITA Masahiro]
|
1017
|
+
|
1018
|
+
### Thanks
|
1019
|
+
|
1020
|
+
* TOMITA Masahiro
|
1021
|
+
|
1022
|
+
## 3.0.6 - 2014-11-09 {#version-3-0-6}
|
1023
|
+
|
1024
|
+
It's a minor update release.
|
1025
|
+
|
1026
|
+
### Improvements
|
1027
|
+
|
1028
|
+
* Improved code snippet location.
|
1029
|
+
[GitHub#84](https://github.com/test-unit/test-unit/issues/84)[Patch by Yuki Kurihara]
|
1030
|
+
|
1031
|
+
### Thanks
|
1032
|
+
|
1033
|
+
* Yuki Kurihara
|
1034
|
+
|
1035
|
+
## 3.0.5 - 2014-11-08 {#version-3-0-5}
|
1036
|
+
|
1037
|
+
It's a minor update release.
|
1038
|
+
|
1039
|
+
### Fixes
|
1040
|
+
|
1041
|
+
* Fixed a bug that startup/shutdown of parent test case isn't called
|
1042
|
+
when the test case includes one or more modules.
|
1043
|
+
[GitHub#83](https://github.com/test-unit/test-unit/issues/83)[Reported by Chadderton Odwazny]
|
1044
|
+
|
1045
|
+
### Thanks
|
1046
|
+
|
1047
|
+
* Chadderton Odwazny
|
1048
|
+
|
1049
|
+
## 3.0.4 - 2014-11-01 {#version-3-0-4}
|
1050
|
+
|
1051
|
+
It's a minor update release.
|
1052
|
+
|
1053
|
+
### Improvements
|
1054
|
+
|
1055
|
+
* Stopped to remove JRuby and Rubinius internal backtrace entries from
|
1056
|
+
backtrace on failure/error.
|
1057
|
+
[GitHub#82](https://github.com/test-unit/test-unit/issues/82)[Patch by Charles Oliver Nutter]
|
1058
|
+
|
1059
|
+
### Thanks
|
1060
|
+
|
1061
|
+
* Charles Oliver Nutter
|
1062
|
+
|
1063
|
+
## 3.0.3 - 2014-10-29 {#version-3-0-3}
|
1064
|
+
|
1065
|
+
It's a minor update release.
|
1066
|
+
|
1067
|
+
### Improvements
|
1068
|
+
|
1069
|
+
* Improved `Test::Unit::TestCase.test` performance.
|
1070
|
+
100 times faster.
|
1071
|
+
* Supported `Proc` for user message.
|
1072
|
+
[Sugested by Nobuyoshi Nakada]
|
1073
|
+
|
1074
|
+
### Fixes
|
1075
|
+
|
1076
|
+
* Fixed markup in document.
|
1077
|
+
[GitHub#81](https://github.com/test-unit/test-unit/issues/81)[Patch by Masafumi Yokoyama]
|
1078
|
+
|
1079
|
+
### Thanks
|
1080
|
+
|
1081
|
+
* Masafumi Yokoyama
|
1082
|
+
* Nobuyoshi Nakada
|
1083
|
+
|
1084
|
+
## 3.0.2 - 2014-10-15 {#version-3-0-2}
|
1085
|
+
|
1086
|
+
It's a minor update release.
|
1087
|
+
|
1088
|
+
### Improvements
|
1089
|
+
|
1090
|
+
* Supported broken `==` implementation.
|
1091
|
+
`==` implementation should be fixed but it's not work of test-unit. :<
|
1092
|
+
[GitHub#71](https://github.com/test-unit/test-unit/issues/71)[Reported by Emily]
|
1093
|
+
* [UI][console]: Accepted no message failure.
|
1094
|
+
[GitHub#66](https://github.com/test-unit/test-unit/issues/66)[Reported by Brian Tatnall]
|
1095
|
+
* Updated gem description.
|
1096
|
+
[GitHub#74](https://github.com/test-unit/test-unit/issues/74)[Patch by Vít Ondruch]
|
1097
|
+
* Updated GPL text.
|
1098
|
+
[GitHub#78](https://github.com/test-unit/test-unit/issues/78)[Patch by Vít Ondruch]
|
1099
|
+
|
1100
|
+
### Fixes
|
1101
|
+
|
1102
|
+
* Removed needless executable bit from README file.
|
1103
|
+
[GitHub#79](https://github.com/test-unit/test-unit/issues/79)[Patch by Vít Ondruch]
|
1104
|
+
|
1105
|
+
### Thanks
|
1106
|
+
|
1107
|
+
* Emily
|
1108
|
+
* Brian Tatnall
|
1109
|
+
* Vít Ondruch
|
1110
|
+
|
1111
|
+
## 3.0.1 - 2014-08-05 {#version-3-0-1}
|
1112
|
+
|
1113
|
+
It's a minor update release.
|
1114
|
+
|
1115
|
+
### Improvements
|
1116
|
+
|
1117
|
+
* Improved Ruby 1.8.7 support. Note that we don't support Ruby 1.8.7
|
1118
|
+
actively. We just support if its support is painless.
|
1119
|
+
[GitHub#71](https://github.com/test-unit/test-unit/issues/71)[Patch by estolfo]
|
1120
|
+
|
1121
|
+
### Thanks
|
1122
|
+
|
1123
|
+
* estolfo
|
1124
|
+
|
1125
|
+
## 3.0.0 - 2014-08-03 {#version-3-0-0}
|
1126
|
+
|
1127
|
+
It's Power Assert supported release!
|
1128
|
+
|
1129
|
+
### Improvements
|
1130
|
+
|
1131
|
+
* Improved Rubinius support. [Ryo Onodera]
|
1132
|
+
* Updated RR repository link. [GitHub#56](https://github.com/test-unit/test-unit/issues/56)[Patch by Kenichi Kamiya]
|
1133
|
+
* Added some minitest compatible assertions. We don't recommend
|
1134
|
+
using these assertions. They are just for migrating from minitest.
|
1135
|
+
[GitHub#57](https://github.com/test-unit/test-unit/issues/57)[Patch by Karol Bucek]
|
1136
|
+
* {Test::Unit::Assertions#refute}
|
1137
|
+
* {Test::Unit::Assertions#refute_predicate}
|
1138
|
+
* {Test::Unit::Assertions#refute_empty}
|
1139
|
+
* {Test::Unit::Assertions#assert_not_includes}
|
1140
|
+
* {Test::Unit::Assertions#refute_includes}
|
1141
|
+
* {Test::Unit::Assertions#assert_not_instance_of}
|
1142
|
+
* {Test::Unit::Assertions#refute_instance_of}
|
1143
|
+
* {Test::Unit::Assertions#assert_not_kind_of}
|
1144
|
+
* {Test::Unit::Assertions#refute_kind_of}
|
1145
|
+
* {Test::Unit::Assertions#assert_not_operator}
|
1146
|
+
* {Test::Unit::Assertions#refute_operator}
|
1147
|
+
* Improved code readability. [Suggested by Kenichi Kamiya]
|
1148
|
+
* Made license field in RubyGems parseable.
|
1149
|
+
[GitHub#60](https://github.com/test-unit/test-unit/issues/60)[Patch by Michael Grosser]
|
1150
|
+
* Improved test case match feature by `--testcase` and `--ignore-testcase`
|
1151
|
+
options. They also checks parent class names.
|
1152
|
+
* Made inspected representation of Numeric objects especially
|
1153
|
+
BigDecimal more readable. [GitHub#64](https://github.com/test-unit/test-unit/issues/64)[Reported by Byron Appelt]
|
1154
|
+
* Added badges for Traivs CI and RubyGems.
|
1155
|
+
[GitHub#65](https://github.com/test-unit/test-unit/issues/65)[Patch by Byron Appelt]
|
1156
|
+
* Supported Power Assert. You can use Power Assert with
|
1157
|
+
{Test::Unit::Assertions#assert} with block. See method document
|
1158
|
+
for details. We recommend using Power Assert for predicate method
|
1159
|
+
checks. For example, we recommend Power Assert rather than
|
1160
|
+
{Test::Unit::Assertions#assert_true},
|
1161
|
+
{Test::Unit::Assertions#assert_predicate} and so on. We don't
|
1162
|
+
recommend using Power Assert for equality check assertion.
|
1163
|
+
{Test::Unit::Assertions#assert_equal} should be used for the case.
|
1164
|
+
[Kazuki Tsujimoto]
|
1165
|
+
|
1166
|
+
### Fixes
|
1167
|
+
|
1168
|
+
* Fixed a bug that test case defined by block has wrong location.
|
1169
|
+
[GitHub#58](https://github.com/test-unit/test-unit/issues/58)[Patch by Narihiro Nakamura]
|
1170
|
+
* Fixed a bug that test methods defined in included modules in
|
1171
|
+
super-class are also collected.
|
1172
|
+
[GitHub#62](https://github.com/test-unit/test-unit/issues/62)[GitHub#63](https://github.com/test-unit/test-unit/issues/63)[Patch by Karol Bucek]
|
1173
|
+
|
1174
|
+
### Thanks
|
1175
|
+
|
1176
|
+
* Ryo Onodera
|
1177
|
+
* Kenichi Kamiya
|
1178
|
+
* Karol Bucek
|
1179
|
+
* Narihiro Nakamura
|
1180
|
+
* Michael Grosser
|
1181
|
+
* Byron Appelt
|
1182
|
+
* Kazuki Tsujimoto
|
1183
|
+
|
1184
|
+
## 2.5.5 - 2013-05-18 {#version-2-5-5}
|
1185
|
+
|
1186
|
+
It's Ruby 2.0.0 supported release!
|
1187
|
+
|
1188
|
+
### Improvements
|
1189
|
+
|
1190
|
+
* Supported Ruby 2.0.0. [GitHub#54](https://github.com/test-unit/test-unit/issues/54) [Reported by mtasaka]
|
1191
|
+
* Accepted screen-256color TERM as 256 colors available environment.
|
1192
|
+
[GitHub#55](https://github.com/test-unit/test-unit/issues/55) [Reported by Tom Miller]
|
1193
|
+
|
1194
|
+
### Fixes
|
1195
|
+
|
1196
|
+
* Fixed a typo in document.
|
1197
|
+
[GitHub#53](https://github.com/test-unit/test-unit/issues/53) [Patch by Baptiste Fontaine]
|
1198
|
+
* Fixed a bug in {Test::Unit::Assertions#assert_in_epsilon}. It doesn't work
|
1199
|
+
as expected if expected value is negative value.
|
1200
|
+
[Ruby Bug #8317] [Reported by Nobuhiro IMAI]
|
1201
|
+
|
1202
|
+
### Thanks
|
1203
|
+
|
1204
|
+
* Baptiste Fontaine
|
1205
|
+
* mtasaka
|
1206
|
+
* Tom Miller
|
1207
|
+
* Nobuhiro IMAI
|
1208
|
+
|
1209
|
+
## 2.5.4 - 2013-01-23 {#version-2-5-4}
|
1210
|
+
|
1211
|
+
It's a bug fix release.
|
1212
|
+
|
1213
|
+
### Improvements
|
1214
|
+
|
1215
|
+
* Added documents for data driven test functionality.
|
1216
|
+
* Added TSV support for data driven test functionality.
|
1217
|
+
* Support tag inspection on JRuby.
|
1218
|
+
|
1219
|
+
### Fixes
|
1220
|
+
|
1221
|
+
* Fixed a bug. It is too slow to filter tests when there are many
|
1222
|
+
tests. [GitHub#46](https://github.com/test-unit/test-unit/issues/46)
|
1223
|
+
* Accept anonymous test suite.
|
1224
|
+
[GitHub:#49] [Reported by Matthew Rudy Jacobs]
|
1225
|
+
|
1226
|
+
### Thanks
|
1227
|
+
|
1228
|
+
* Matthew Rudy Jacobs
|
1229
|
+
|
1230
|
+
## 2.5.3 - 2012-11-28 {#version-2-5-3}
|
1231
|
+
|
1232
|
+
It's a release for minitest compatibility and bug fix.
|
1233
|
+
|
1234
|
+
### Improvements
|
1235
|
+
|
1236
|
+
* Supported diff in invalid encoding.
|
1237
|
+
* Added some assersion methods just for minitest compatibility.
|
1238
|
+
Added methods are assert_includes(), refute_*() and refute().
|
1239
|
+
If you are test-unit user, please don't use them.
|
1240
|
+
[GitHub#40](https://github.com/test-unit/test-unit/issues/40) [Suggested by Michael Grosser]
|
1241
|
+
* Added --attribute option to select target tests by attribute.
|
1242
|
+
[test-unit-users-en:00098] [Suggested by Piotr Nestorow]
|
1243
|
+
|
1244
|
+
### Fixes
|
1245
|
+
|
1246
|
+
* Allowed use of test for inheritance in ActionController::TestCase.
|
1247
|
+
[GitHub#42](https://github.com/test-unit/test-unit/issues/42) [Patch by David Rasch]
|
1248
|
+
* Ensured evaluating at_exit block in top level.
|
1249
|
+
In IRB context, exit() specifies irb_exit().
|
1250
|
+
[test-unit-users-en:00089] [Reported by Daniel Berger]
|
1251
|
+
* Fixed a bug that decoration style description is ignored.
|
1252
|
+
"decoration style description" are using description method
|
1253
|
+
above "def test_name" or with Symbol specifying test_name.
|
1254
|
+
[GitHub#45](https://github.com/test-unit/test-unit/issues/45) [Reported by Piotr Nestorow]
|
1255
|
+
|
1256
|
+
### Thanks
|
1257
|
+
|
1258
|
+
* Michael Grosser
|
1259
|
+
* David Rasch
|
1260
|
+
* Daniel Berger
|
1261
|
+
* Piotr Nestorow
|
1262
|
+
|
1263
|
+
## 2.5.2 - 2012-08-29 {#version-2-5-2}
|
1264
|
+
|
1265
|
+
It's an improvement release for tmtms. `--location` is a similar
|
1266
|
+
feature to `--line_number` in RSpec. `sub_test_case` is a similar
|
1267
|
+
feature to `context` in shoulda-context and RSpec.
|
1268
|
+
|
1269
|
+
### Improvements
|
1270
|
+
|
1271
|
+
* Cleaned up tests.
|
1272
|
+
[GitHub#34](https://github.com/test-unit/test-unit/issues/34) [Patch by Michael Grosser]
|
1273
|
+
* Added missing background color for 8 color environment.
|
1274
|
+
* Added workaround for NetBeans.
|
1275
|
+
[GitHub#38](https://github.com/test-unit/test-unit/issues/38) [Reported by Marc Cooper]
|
1276
|
+
* Added `--location` command line option that selects target tests
|
1277
|
+
by test defined location.
|
1278
|
+
* Created sub test suite for each subclassed test case.
|
1279
|
+
* [ui][console] Supported nested test suites.
|
1280
|
+
* Added {Test::Unit.at_start} and {Test::Unit.at_exit} hooks that
|
1281
|
+
are run before/after all tests are run.
|
1282
|
+
[Good hook name is suggested by kdmsnr]
|
1283
|
+
* Improved code snippet target on failure. Test method is always used
|
1284
|
+
for code snippet target.
|
1285
|
+
[GitHub#39](https://github.com/test-unit/test-unit/issues/39) [Suggested by Michael Grosser]
|
1286
|
+
* Added {Test::Unit::TestCase.sub_test_case} that creates sub test case.
|
1287
|
+
The sub test case name isn't limited Ruby's constant name rule. You can
|
1288
|
+
specify the sub test case name in free form.
|
1289
|
+
|
1290
|
+
### Thanks
|
1291
|
+
|
1292
|
+
* Michael Grosser
|
1293
|
+
* Marc Cooper
|
1294
|
+
* kdmsnr
|
1295
|
+
|
1296
|
+
## 2.5.1 - 2012-07-05 {#version-2-5-1}
|
1297
|
+
|
1298
|
+
It's a bug fix release.
|
1299
|
+
|
1300
|
+
### Improvements
|
1301
|
+
|
1302
|
+
* Supported installing from GitHub.
|
1303
|
+
[GitHub#29](https://github.com/test-unit/test-unit/issues/29) [Suggested by Michael Grosser]
|
1304
|
+
* Supported ActiveSupport::TestCase.
|
1305
|
+
[GitHub#30](https://github.com/test-unit/test-unit/issues/30) [Reported by Michael Grosser]
|
1306
|
+
* [ui][console] Improved multiline falut message display.
|
1307
|
+
|
1308
|
+
### Fixes
|
1309
|
+
|
1310
|
+
* [ui][console] Fixed a bug that expected and actual values are
|
1311
|
+
empty.
|
1312
|
+
[GitHub#31](https://github.com/test-unit/test-unit/issues/31)[GitHub#33](https://github.com/test-unit/test-unit/issues/33)
|
1313
|
+
[Reported by Kendall Buchanan][Reported by Mathieu Martin]
|
1314
|
+
[Hinted by Michael Grosser]
|
1315
|
+
* Fixed a bug that .gemspec can't be loaded on LANG=C.
|
1316
|
+
[RubyForge#29595] [Reported by Jean-Denis Koeck]
|
1317
|
+
|
1318
|
+
### Thanks
|
1319
|
+
|
1320
|
+
* Michael Grosser
|
1321
|
+
* Kendall Buchanan
|
1322
|
+
* Mathieu Martin
|
1323
|
+
* Jean-Denis Koeck
|
1324
|
+
|
1325
|
+
## 2.5.0 - 2012-06-06 {#version-2-5-0}
|
1326
|
+
|
1327
|
+
It's a bug fix release.
|
1328
|
+
|
1329
|
+
### Fixes
|
1330
|
+
|
1331
|
+
* Fixed a backward incompatibility of `TestUnitMediator#run_suite`
|
1332
|
+
introduced in 2.4.9.
|
1333
|
+
[GitHub#28](https://github.com/test-unit/test-unit/issues/28) [Reported by Vladislav Rassokhin]
|
1334
|
+
|
1335
|
+
### Thanks
|
1336
|
+
|
1337
|
+
* Vladislav Rassokhin
|
1338
|
+
|
1339
|
+
## 2.4.9 - 2012-06-03 {#version-2-4-9}
|
1340
|
+
|
1341
|
+
It's a bug fix release.
|
1342
|
+
|
1343
|
+
### Improvements
|
1344
|
+
|
1345
|
+
* `Test::Unit.run?` ->
|
1346
|
+
`Test::Unit::AutoRunner.need_auto_run?`. `Test::Unit.run?` is marked
|
1347
|
+
as deprecated but it is still available.
|
1348
|
+
* [experimental] Added top level "run" method for `"ruby -rtest-unit -e
|
1349
|
+
run test/test_*.rb"`. Is this API OK or dirty?
|
1350
|
+
* Made failure output more readable on no color mode.
|
1351
|
+
* Supported showing ASCII-8BIT diff in failure message.
|
1352
|
+
* [ui][console] Supported `ENV["TERM"] == "xterm-256color"` as color
|
1353
|
+
available terminal.
|
1354
|
+
[GitHub#26](https://github.com/test-unit/test-unit/issues/26) [Reported by Michael Grosser]
|
1355
|
+
* [ui][console] Supported "-256color" suffix `ENV["TERM"]` terminal
|
1356
|
+
as 256 color supported terminal.
|
1357
|
+
|
1358
|
+
### Fixes
|
1359
|
+
|
1360
|
+
* Fixed a bug that `--workdir` doesn't work.
|
1361
|
+
* Consumed processed command line parameters in `ARGV` as `--help`
|
1362
|
+
says.
|
1363
|
+
[RubyForge#29554] [Reported by Bob Saveland]
|
1364
|
+
* Added missing `require "test/unit/diff"`.
|
1365
|
+
[GitHub#25](https://github.com/test-unit/test-unit/issues/25) [Reported by Stephan Kulow]
|
1366
|
+
|
1367
|
+
### Thanks
|
1368
|
+
|
1369
|
+
* Bob Saveland
|
1370
|
+
* Stephan Kulow
|
1371
|
+
* Michael Grosser
|
1372
|
+
|
1373
|
+
## 2.4.8 - 2012-3-6 {#version-2-4-8}
|
1374
|
+
|
1375
|
+
It's a bug fix release.
|
1376
|
+
|
1377
|
+
### Improvements
|
1378
|
+
|
1379
|
+
* Delayed at_exit registration until Test::Unit is used.
|
1380
|
+
[GitHub:#21] [Reported by Jason Lunn]
|
1381
|
+
* Added workaround for test-spec.
|
1382
|
+
[GitHub:#22] [Reported by Cédric Boutillier]
|
1383
|
+
|
1384
|
+
### Fixes
|
1385
|
+
|
1386
|
+
* Fixed an error on code snippet display on JRuby.
|
1387
|
+
[GitHub:#19][GitHub:#20]
|
1388
|
+
[Reported by Jørgen P. Tjernø][Patch by Junegunn Choi]
|
1389
|
+
|
1390
|
+
### Thanks
|
1391
|
+
|
1392
|
+
* Jørgen P. Tjernø
|
1393
|
+
* Junegunn Choi
|
1394
|
+
* Jason Lunn
|
1395
|
+
|
1396
|
+
## 2.4.7 - 2012-2-10 {#version-2-4-7}
|
1397
|
+
|
1398
|
+
It's a code snippet improvement release.
|
1399
|
+
|
1400
|
+
### Improvements
|
1401
|
+
|
1402
|
+
* Supported code snippet display on all faults.
|
1403
|
+
|
1404
|
+
## 2.4.6 - 2012-2-9 {#version-2-4-6}
|
1405
|
+
|
1406
|
+
It's a TAP runner separated release.
|
1407
|
+
|
1408
|
+
### Improvements
|
1409
|
+
|
1410
|
+
* Moved TAP runner to test-unit-runner-tap gem from test-unit gem.
|
1411
|
+
* Supported code snippet display on failure.
|
1412
|
+
|
1413
|
+
## 2.4.5 - 2012-1-16 {#version-2-4-5}
|
1414
|
+
|
1415
|
+
It's a failure message readability improvement release.
|
1416
|
+
|
1417
|
+
### Improvements
|
1418
|
+
|
1419
|
+
* Removed needless information from exception inspected
|
1420
|
+
text on failure. It's for easy to read.
|
1421
|
+
* Supported custom inspector.
|
1422
|
+
|
1423
|
+
## 2.4.4 - 2012-1-2 {#version-2-4-4}
|
1424
|
+
|
1425
|
+
It's a Rails integration improved release.
|
1426
|
+
|
1427
|
+
### Improvements
|
1428
|
+
|
1429
|
+
* [ui][console] Don't break progress display when a test is failed.
|
1430
|
+
* [ui][console] Added markers betwen a failure detail
|
1431
|
+
message in progress to improve visibility.
|
1432
|
+
* [travis] Dropped Ruby 1.8.6 as a test target. [GitHub:#13]
|
1433
|
+
[Patch by Josh Kalderimis]
|
1434
|
+
* Supported expected value == 0 case in assert_in_epsilon. [RubyForge#29485]
|
1435
|
+
[Reported by Syver Enstad]
|
1436
|
+
* Supported a block style setup/teardown/cleanup.
|
1437
|
+
|
1438
|
+
### Thanks
|
1439
|
+
|
1440
|
+
* Josh Kalderimis
|
1441
|
+
* Syver Enstad
|
1442
|
+
|
1443
|
+
## 2.4.3 - 2011-12-11 {#version-2-4-3}
|
1444
|
+
|
1445
|
+
### Improvements
|
1446
|
+
|
1447
|
+
* Improved SimpleCov integration by stopping to modify
|
1448
|
+
`ARGV` in auto runner. [GitHub:#12]
|
1449
|
+
[Reported by Nikos Dimitrakopoulos]
|
1450
|
+
* Improved JRuby integration by removing JRuby internal backtrace.
|
1451
|
+
|
1452
|
+
### Thanks
|
1453
|
+
|
1454
|
+
* Nikos Dimitrakopoulos
|
1455
|
+
|
1456
|
+
## 2.4.2 - 2011-11-26 {#version-2-4-2}
|
1457
|
+
|
1458
|
+
### Improvements
|
1459
|
+
|
1460
|
+
* `--name` supported data label.
|
1461
|
+
|
1462
|
+
## 2.4.1 - 2011-11-09
|
1463
|
+
|
1464
|
+
### Improvements
|
1465
|
+
|
1466
|
+
* Accepted AssertionMessage as assertion's user message.
|
1467
|
+
It is used in assert_select in actionpack.
|
1468
|
+
[Reported by David Heath]
|
1469
|
+
|
1470
|
+
### Fixes
|
1471
|
+
|
1472
|
+
* Fixed test failure on LANG=C. #11 [Reported by boutil]
|
1473
|
+
* Suppress warnings on Ruby 1.9.2.
|
1474
|
+
|
1475
|
+
### Thanks
|
1476
|
+
|
1477
|
+
* boutil
|
1478
|
+
* David Heath
|
1479
|
+
|
1480
|
+
## 2.4.0 - 2011-09-18
|
1481
|
+
|
1482
|
+
### Improvements
|
1483
|
+
|
1484
|
+
* Supported Travis CI. #5 [Suggested by James Mead]
|
1485
|
+
* Added Gemfile. #6 [Suggested by James Mead]
|
1486
|
+
* [ui][console] Supported notification in show-detail-immediately.
|
1487
|
+
* [ui][console] enable --show-detail-immediately by default.
|
1488
|
+
* [ui] Added --max-diff-target-string-size option.
|
1489
|
+
* [ui][console] Supported 256 colors.
|
1490
|
+
|
1491
|
+
### Fixes
|
1492
|
+
|
1493
|
+
* Added missing fixture file. #7 [Reported by grafi-tt]
|
1494
|
+
* [ui][console] Added missing the last newline for progress level.
|
1495
|
+
* Supported correct backtrace for redefined notification.
|
1496
|
+
* Don't handle Timeout::Error as pass through exception on Ruby 1.8. #8
|
1497
|
+
[Reported by Marc Seeger (Acquia)]
|
1498
|
+
|
1499
|
+
### Thanks
|
1500
|
+
|
1501
|
+
* James Mead
|
1502
|
+
* grafi-tt
|
1503
|
+
* Marc Seeger (Acquia)
|
1504
|
+
|
1505
|
+
## 2.3.2 - 2011-08-15
|
1506
|
+
|
1507
|
+
A bug fix release.
|
1508
|
+
|
1509
|
+
### Improvements
|
1510
|
+
|
1511
|
+
* [ui][console] Added some newlines to improve readability.
|
1512
|
+
|
1513
|
+
### Fixes
|
1514
|
+
|
1515
|
+
* [ui][console] Worked --verbose again.
|
1516
|
+
* Re-supported Ruby 1.8.6. [Reported by James Mead]
|
1517
|
+
|
1518
|
+
### Thanks
|
1519
|
+
|
1520
|
+
* James Mead
|
1521
|
+
|
1522
|
+
## 2.3.1 - 2011-08-06 {#version-2-3-1}
|
1523
|
+
|
1524
|
+
Output improvement release!
|
1525
|
+
|
1526
|
+
### Improvements
|
1527
|
+
|
1528
|
+
* [ui][console] Outputs omissions and notifications in short.
|
1529
|
+
* [ui][console] Added "important-only" verbose level.
|
1530
|
+
* Intelligence diff supports recursive references.
|
1531
|
+
* [rubyforge #29325] Supported Ruby Enterprise Edition.
|
1532
|
+
[Reported by Hans de Graaff]
|
1533
|
+
* [rubyforge #29326] Supported JRuby.
|
1534
|
+
[Reported by Hans de Graaff]
|
1535
|
+
* Added --show-detail-immediately option that shows
|
1536
|
+
fault details when a fault is occurred.
|
1537
|
+
|
1538
|
+
### Fixes
|
1539
|
+
|
1540
|
+
* [pull request #1] Fixed a problem that load collector
|
1541
|
+
can't load a test file on Ruby 1.9. [Patch by grafi-tt]
|
1542
|
+
* [issue #3] Fixed a problem that implicit method name
|
1543
|
+
override by declarative style test definition.
|
1544
|
+
[Reported by Jeremy Stephens]
|
1545
|
+
|
1546
|
+
### Thanks
|
1547
|
+
|
1548
|
+
* grafi-tt
|
1549
|
+
* Jeremy Stephens
|
1550
|
+
* Hans de Graaff
|
1551
|
+
|
1552
|
+
## 2.3.0 / 2011-04-17
|
1553
|
+
|
1554
|
+
* 13 enhancements
|
1555
|
+
* improve Hash key sorting for diff.
|
1556
|
+
* [#28928] support any characters in declarative style description.
|
1557
|
+
[Daniel Berger]
|
1558
|
+
* add Error#location and make #backtrace deprecated.
|
1559
|
+
* make TestCase#passed? public.
|
1560
|
+
* add result finished and pass assertion notifications.
|
1561
|
+
* add TestSuite#passed? public.
|
1562
|
+
* add XML test runner.
|
1563
|
+
* add --output-file-descriptor option.
|
1564
|
+
* measure elapsed time for each test.
|
1565
|
+
* add --collector option.
|
1566
|
+
* support test driven test.
|
1567
|
+
[Haruka Yoshihara]
|
1568
|
+
* add cleanup hook it runs between after test and before teardown.
|
1569
|
+
* support recursive collection sort for diff.
|
1570
|
+
|
1571
|
+
* Thanks
|
1572
|
+
* Daniel Berger
|
1573
|
+
* Haruka Yoshihara
|
1574
|
+
|
1575
|
+
## 2.2.0 / 2011-02-14
|
1576
|
+
|
1577
|
+
* 22 enhancements
|
1578
|
+
* [#28808] accept String as delta for assert_in_delta.
|
1579
|
+
[Daniel Berger]
|
1580
|
+
* [test-unit-users-en:00035] make GC-able finished tests.
|
1581
|
+
[Daniel Berger]
|
1582
|
+
* use also COLUMNS environment variable to guess terminal width.
|
1583
|
+
* make delta for assert_in_delta optional.
|
1584
|
+
[Nobuyoshi Nakada]
|
1585
|
+
* add assert_not_respond_to.
|
1586
|
+
[Nobuyoshi Nakada]
|
1587
|
+
* add assert_not_match. assert_no_match is deprecated.
|
1588
|
+
[Nobuyoshi Nakada]
|
1589
|
+
* add assert_not_in_delta.
|
1590
|
+
[Nobuyoshi Nakada]
|
1591
|
+
* add assert_in_epsilon.
|
1592
|
+
[Nobuyoshi Nakada]
|
1593
|
+
* add assert_not_in_epsilon.
|
1594
|
+
[Nobuyoshi Nakada]
|
1595
|
+
* add assert_include.
|
1596
|
+
[Nobuyoshi Nakada]
|
1597
|
+
* add assert_not_include.
|
1598
|
+
[Nobuyoshi Nakada]
|
1599
|
+
* add assert_empty.
|
1600
|
+
[Nobuyoshi Nakada]
|
1601
|
+
* add assert_not_empty.
|
1602
|
+
[Nobuyoshi Nakada]
|
1603
|
+
* notify require failed paths.
|
1604
|
+
* validate message value for assert.
|
1605
|
+
* show throughputs at the last.
|
1606
|
+
* support not ASCII compatible string diff.
|
1607
|
+
* support colorized diff on encoding different string.
|
1608
|
+
* normalize entry order of Hash for readable diff.
|
1609
|
+
* add --ignore-name option.
|
1610
|
+
* add --ignore-testcase option.
|
1611
|
+
* add assert_not_send.
|
1612
|
+
|
1613
|
+
* Thanks
|
1614
|
+
* Daniel Berger
|
1615
|
+
* Nobuyoshi Nakada
|
1616
|
+
|
1617
|
+
## 2.1.2 / 2010-11-25
|
1618
|
+
|
1619
|
+
* 1 enhancement
|
1620
|
+
* support auto runner prepare hook.
|
1621
|
+
|
1622
|
+
## 2.1.1 / 2010-07-29
|
1623
|
+
|
1624
|
+
* 1 bug fix
|
1625
|
+
* [test-unit-users-en:00026] re-work tap runner.
|
1626
|
+
[Daniel Berger]
|
1627
|
+
|
1628
|
+
* Thanks
|
1629
|
+
* Daniel Berger
|
1630
|
+
|
1631
|
+
=== 2.1.0 / 2010-07-17
|
1632
|
+
|
1633
|
+
* 1 bug fix
|
1634
|
+
* [#28267] global config file ignored
|
1635
|
+
[Daniel Berger]
|
1636
|
+
|
1637
|
+
* Thanks
|
1638
|
+
* Daniel Berger
|
1639
|
+
|
1640
|
+
## 2.0.8 / 2010-06-02
|
1641
|
+
|
1642
|
+
* 5 major enchancements
|
1643
|
+
* collect *_test.rb and *-test.rb files as test files.
|
1644
|
+
* [#28181] improve assert_in_delta message.
|
1645
|
+
[Suggested by David MARCHALAND]
|
1646
|
+
* show string encoding in assert_equal failure message if
|
1647
|
+
they are different.
|
1648
|
+
* change default color scheme:
|
1649
|
+
* success: green back + white
|
1650
|
+
* failure: red back + white
|
1651
|
+
* add capture_output.
|
1652
|
+
|
1653
|
+
* 2 bug fixes
|
1654
|
+
* fix a bug that console runner on verbose mode causes an
|
1655
|
+
error for long test name (>= 61).
|
1656
|
+
* [#28093] Autorunner ignores all files in a directory named test by default
|
1657
|
+
[Reported by Florian Frank]
|
1658
|
+
|
1659
|
+
* Thanks
|
1660
|
+
* Florian Frank
|
1661
|
+
* David MARCHALAND
|
1662
|
+
|
1663
|
+
## 2.0.7 / 2010-03-09
|
1664
|
+
|
1665
|
+
* 4 major enhancements
|
1666
|
+
* detect redefined test methods.
|
1667
|
+
* [INTERFACE IMCOMPATIBLE] multiple --name and --testcase
|
1668
|
+
options narrow down targets instead of adding targets.
|
1669
|
+
* [#27764] accept custom test_order for each test case.
|
1670
|
+
[Suggested by David MARCHALAND]
|
1671
|
+
* [#27790] ignore omitted tests from 'n% passed' report.
|
1672
|
+
[Suggested by Daniel Berger]
|
1673
|
+
|
1674
|
+
* 2 minor enchancements
|
1675
|
+
* [#27832] ignore .git directory. [Suggested by Daniel Berger]
|
1676
|
+
* [#27792] require 'fileutils' and 'tmpdir' lazily for non-priority
|
1677
|
+
mode users. [Suggested by David MARCHALAND]
|
1678
|
+
|
1679
|
+
* 2 bug fixes
|
1680
|
+
* [#27892] modify processed arguments array destructively.
|
1681
|
+
[Reported by Bob Saveland]
|
1682
|
+
* work without HOME environment variable.
|
1683
|
+
[Reported by Champak Ch]
|
1684
|
+
|
1685
|
+
* Thanks
|
1686
|
+
* David MARCHALAND
|
1687
|
+
* Daniel Berger
|
1688
|
+
* Bob Saveland
|
1689
|
+
* Champak Ch
|
1690
|
+
|
1691
|
+
## 2.0.6 / 2010-01-09
|
1692
|
+
|
1693
|
+
* 3 major enhancements
|
1694
|
+
* [#27380] Declarative syntax? [Daniel Berger]
|
1695
|
+
support declarative syntax:
|
1696
|
+
|
1697
|
+
test "test description in natural language" do
|
1698
|
+
...
|
1699
|
+
end
|
1700
|
+
* support test description:
|
1701
|
+
description "test description in natural language"
|
1702
|
+
def test_my_test
|
1703
|
+
...
|
1704
|
+
end
|
1705
|
+
* make max diff target string size customizable by
|
1706
|
+
TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE environment variable.
|
1707
|
+
|
1708
|
+
* 2 bug fixes
|
1709
|
+
* [#27374] omit_if unexpected behavior [David MARCHALAND]
|
1710
|
+
* fix a bug that tests in sub directories aren't load with --basedir.
|
1711
|
+
[Daniel Berger]
|
1712
|
+
|
1713
|
+
* Thanks
|
1714
|
+
* David MARCHALAND
|
1715
|
+
* Daniel Berger
|
1716
|
+
|
1717
|
+
## 2.0.5 / 2009-10-18
|
1718
|
+
|
1719
|
+
* 1 bug fixes
|
1720
|
+
* [#27314] fix diff may raise an exception. [Erik Hollensbe]
|
1721
|
+
|
1722
|
+
* Thanks
|
1723
|
+
* Erik Hollensbe
|
1724
|
+
|
1725
|
+
## 2.0.4 / 2009-10-17
|
1726
|
+
|
1727
|
+
* 4 major enhancements
|
1728
|
+
* use ~/.test-unit.yml as global configuration file.
|
1729
|
+
* add TAP runner. (--runner tap)
|
1730
|
+
* support colorized diff:
|
1731
|
+
https://test-unit.github.io/color-diff.png
|
1732
|
+
* add Test::Unit::AutoRunner.default_runner= to specify default test runner.
|
1733
|
+
|
1734
|
+
* 4 minor enhancements
|
1735
|
+
* improve verbose mode output format. (use indent)
|
1736
|
+
* support `NOT_PASS_THROUGH_EXCEPTIONS`.
|
1737
|
+
* support arguments option in `#{runner}_options`.
|
1738
|
+
* TC_ -> Test in sample test case name.
|
1739
|
+
|
1740
|
+
* 1 bug fixes
|
1741
|
+
* [#27195] test-unit-2.0.3 + ruby-1.9.1 cannot properly test
|
1742
|
+
DelegateClass subclasses [Mike Pomraning]
|
1743
|
+
|
1744
|
+
* Thanks
|
1745
|
+
* Mike Pomraning
|
1746
|
+
|
1747
|
+
## 2.0.3 / 2009-07-19
|
1748
|
+
|
1749
|
+
* 6 major enhancements
|
1750
|
+
* add assert_predicate.
|
1751
|
+
* add assert_not_predicate.
|
1752
|
+
* [#24210] assert_kind_of supports an array of classes or modules.
|
1753
|
+
[Daniel Berger]
|
1754
|
+
* assert_instance_of supports an array of classes or modules.
|
1755
|
+
* add --default-priority option.
|
1756
|
+
* [#26627] add --order option. [Daniel Berger]
|
1757
|
+
|
1758
|
+
* 4 minor enhancements
|
1759
|
+
* use yellow foreground + black background for error.
|
1760
|
+
* don't show diff for long string.
|
1761
|
+
* accept "*term-color" TERM environment as colorizable terminal.
|
1762
|
+
(e.g. Apple's Terminal)
|
1763
|
+
* [#26268] add a workaround for test-spec's after_all. [Angelo Lakra]
|
1764
|
+
|
1765
|
+
* 1 bug fix
|
1766
|
+
* [#23586] re-support ruby 1.9.1. [Diego Pettenò]
|
1767
|
+
|
1768
|
+
* Thanks
|
1769
|
+
* Diego Pettenò
|
1770
|
+
* Daniel Berger
|
1771
|
+
* Angelo Lakra
|
1772
|
+
|
1773
|
+
## 2.0.2 / 2008-12-21
|
1774
|
+
|
1775
|
+
* 2 major enhancements
|
1776
|
+
|
1777
|
+
* re-support ruby 1.8.5.
|
1778
|
+
* improve exception object comparison.
|
1779
|
+
|
1780
|
+
* 3 bug fixes
|
1781
|
+
|
1782
|
+
* [#22723]: collector fails on anonymous classes
|
1783
|
+
* [#22986]: Test names with '?' blow up on Windows
|
1784
|
+
* [#22988]: don't create .test-result on non-priority mode.
|
1785
|
+
|
1786
|
+
* Thanks
|
1787
|
+
|
1788
|
+
* Erik Hollensbe
|
1789
|
+
* Daniel Berger
|
1790
|
+
* Bill Lear
|
1791
|
+
|
1792
|
+
## 2.0.1 / 2008-11-09
|
1793
|
+
|
1794
|
+
* 19 major enhancements
|
1795
|
+
|
1796
|
+
* support ruby 1.9.1.
|
1797
|
+
* add run_test method to be extensible.
|
1798
|
+
* improve priority-mode auto off.
|
1799
|
+
* improve startup/shutdown RDoc. [Daniel Berger]
|
1800
|
+
* add assert_compare. [#20851] [Designing Patterns]
|
1801
|
+
* add assert_fail_assertion. [#20851] [Designing Patterns]
|
1802
|
+
* add assert_raise_message. [#20851] [Designing Patterns]
|
1803
|
+
* support folded diff.
|
1804
|
+
* add assert_raise_kind_of. [Daniel Berger]
|
1805
|
+
* ingore inherited test for nested test case.
|
1806
|
+
* add assert_const_defined.
|
1807
|
+
* add assert_not_const_defined.
|
1808
|
+
* support assert_raise with an exception object.
|
1809
|
+
* support assert_raise with no arguments that asserts any
|
1810
|
+
exception is raised. [#22602] [Daniel Berger]
|
1811
|
+
* support folded dot progress.
|
1812
|
+
* add --progress-row-max option.
|
1813
|
+
* support color scheme customize.
|
1814
|
+
* support configuration file. (YAML)
|
1815
|
+
* recognize test-XXX.rb files as test files not only test_XXX.rb
|
1816
|
+
|
1817
|
+
* Thanks
|
1818
|
+
|
1819
|
+
* Daniel Berger
|
1820
|
+
* Designing Patterns
|
1821
|
+
|
1822
|
+
## 2.0.0 / 2008-06-18
|
1823
|
+
|
1824
|
+
* 15 major enhancements
|
1825
|
+
|
1826
|
+
* support startup/shutdown. (test case level setup/teardown)
|
1827
|
+
* support multiple setup/teardown.
|
1828
|
+
* support pending.
|
1829
|
+
* support omission.
|
1830
|
+
* support notification.
|
1831
|
+
* support colorize.
|
1832
|
+
* support diff.
|
1833
|
+
* support test attribute.
|
1834
|
+
* add assert_boolean.
|
1835
|
+
* add assert_true.
|
1836
|
+
* add assert_false.
|
1837
|
+
* add --priority-mode option.
|
1838
|
+
* don't use ObjectSpace to collect test cases.
|
1839
|
+
* make more customizable. (additional options, exception handling and so on)
|
1840
|
+
* improve Emacs integration.
|
1841
|
+
|
1842
|
+
* 4 major changes
|
1843
|
+
|
1844
|
+
* remove GTK+1 support.
|
1845
|
+
* split GTK+ runner as another gem.
|
1846
|
+
* split FOX runner as another gem.
|
1847
|
+
* split Tk runner as another gem.
|
1848
|
+
|
1849
|
+
## 1.2.3 / 2008-02-25
|
1850
|
+
|
1851
|
+
* 1 major enhancement
|
1852
|
+
|
1853
|
+
* Birthday (as a gem)!
|