Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove spec files from bundled gem #855

Closed
wants to merge 1 commit into from
Closed

Remove spec files from bundled gem #855

wants to merge 1 commit into from

Conversation

t-richards
Copy link

@t-richards t-richards commented Oct 22, 2019

Summary

This PR slims down the bundled gem by ~75%.

Compressed .gem size (bytes) Unpacked size (bytes)
Before 122,368 604,630
After 38,400 147,093
Difference (absolute) 83,968 456,457
Difference (relative) -68.62% -75.66%

I believe these savings are worth having because this gem is downloaded millions of times.

Changes

Before (details)
## Compressed .gem size
122368 bytes

## Gem contents
-rw-r--r-- wheel/wheel       0 2019-10-21 23:16 .gemtest
-rw-r--r-- wheel/wheel     284 2019-10-21 23:16 .gitignore
-rw-r--r-- wheel/wheel      31 2019-10-21 23:16 .rspec-tm
-rw-r--r-- wheel/wheel     303 2019-10-21 23:16 .travis.yml
-rw-r--r-- wheel/wheel   60954 2019-10-21 23:16 CHANGELOG.md
-rw-r--r-- wheel/wheel      98 2019-10-21 23:16 Gemfile
-rw-r--r-- wheel/wheel    1063 2019-10-21 23:16 LICENSE
-rw-r--r-- wheel/wheel   30293 2019-10-21 23:16 README.md
-rw-r--r-- wheel/wheel     878 2019-10-21 23:16 Rakefile
-rw-r--r-- wheel/wheel    2332 2019-10-21 23:16 lib/webmock.rb
-rw-r--r-- wheel/wheel    3782 2019-10-21 23:16 lib/webmock/api.rb
-rw-r--r-- wheel/wheel     218 2019-10-21 23:16 lib/webmock/assertion_failure.rb
-rw-r--r-- wheel/wheel     815 2019-10-21 23:16 lib/webmock/callback_registry.rb
-rw-r--r-- wheel/wheel     424 2019-10-21 23:16 lib/webmock/config.rb
-rw-r--r-- wheel/wheel     139 2019-10-21 23:16 lib/webmock/cucumber.rb
-rw-r--r-- wheel/wheel     163 2019-10-21 23:16 lib/webmock/deprecation.rb
-rw-r--r-- wheel/wheel     474 2019-10-21 23:16 lib/webmock/errors.rb
-rw-r--r-- wheel/wheel    6549 2019-10-21 23:16 lib/webmock/http_lib_adapters/async_http_client_adapter.rb
-rw-r--r-- wheel/wheel   10055 2019-10-21 23:16 lib/webmock/http_lib_adapters/curb_adapter.rb
-rw-r--r-- wheel/wheel    7154 2019-10-21 23:16 lib/webmock/http_lib_adapters/em_http_request_adapter.rb
-rw-r--r-- wheel/wheel    5251 2019-10-21 23:16 lib/webmock/http_lib_adapters/excon_adapter.rb
-rw-r--r-- wheel/wheel     152 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_lib_adapter.rb
-rw-r--r-- wheel/wheel     329 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb
-rw-r--r-- wheel/wheel     351 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/client.rb
-rw-r--r-- wheel/wheel     408 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/request.rb
-rw-r--r-- wheel/wheel    1074 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/response.rb
-rw-r--r-- wheel/wheel     557 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/streamer.rb
-rw-r--r-- wheel/wheel    1744 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/webmock.rb
-rw-r--r-- wheel/wheel     836 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb_adapter.rb
-rw-r--r-- wheel/wheel    7847 2019-10-21 23:16 lib/webmock/http_lib_adapters/httpclient_adapter.rb
-rw-r--r-- wheel/wheel    5066 2019-10-21 23:16 lib/webmock/http_lib_adapters/manticore_adapter.rb
-rw-r--r-- wheel/wheel   11019 2019-10-21 23:16 lib/webmock/http_lib_adapters/net_http.rb
-rw-r--r-- wheel/wheel    1270 2019-10-21 23:16 lib/webmock/http_lib_adapters/net_http_response.rb
-rw-r--r-- wheel/wheel    4742 2019-10-21 23:16 lib/webmock/http_lib_adapters/patron_adapter.rb
-rw-r--r-- wheel/wheel    5780 2019-10-21 23:16 lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb
-rw-r--r-- wheel/wheel     229 2019-10-21 23:16 lib/webmock/matchers/any_arg_matcher.rb
-rw-r--r-- wheel/wheel     575 2019-10-21 23:16 lib/webmock/matchers/hash_argument_matcher.rb
-rw-r--r-- wheel/wheel     454 2019-10-21 23:16 lib/webmock/matchers/hash_excluding_matcher.rb
-rw-r--r-- wheel/wheel     495 2019-10-21 23:16 lib/webmock/matchers/hash_including_matcher.rb
-rw-r--r-- wheel/wheel    1020 2019-10-21 23:16 lib/webmock/minitest.rb
-rw-r--r-- wheel/wheel    1784 2019-10-21 23:16 lib/webmock/rack_response.rb
-rw-r--r-- wheel/wheel    1525 2019-10-21 23:16 lib/webmock/request_body_diff.rb
-rw-r--r-- wheel/wheel    2305 2019-10-21 23:16 lib/webmock/request_execution_verifier.rb
-rw-r--r-- wheel/wheel   11663 2019-10-21 23:16 lib/webmock/request_pattern.rb
-rw-r--r-- wheel/wheel     822 2019-10-21 23:16 lib/webmock/request_registry.rb
-rw-r--r-- wheel/wheel    1327 2019-10-21 23:16 lib/webmock/request_signature.rb
-rw-r--r-- wheel/wheel    1616 2019-10-21 23:16 lib/webmock/request_signature_snippet.rb
-rw-r--r-- wheel/wheel    2690 2019-10-21 23:16 lib/webmock/request_stub.rb
-rw-r--r-- wheel/wheel    4005 2019-10-21 23:16 lib/webmock/response.rb
-rw-r--r-- wheel/wheel     675 2019-10-21 23:16 lib/webmock/responses_sequence.rb
-rw-r--r-- wheel/wheel     887 2019-10-21 23:16 lib/webmock/rspec.rb
-rw-r--r-- wheel/wheel     601 2019-10-21 23:16 lib/webmock/rspec/matchers.rb
-rw-r--r-- wheel/wheel    1798 2019-10-21 23:16 lib/webmock/rspec/matchers/request_pattern_matcher.rb
-rw-r--r-- wheel/wheel    1534 2019-10-21 23:16 lib/webmock/rspec/matchers/webmock_matcher.rb
-rw-r--r-- wheel/wheel    1675 2019-10-21 23:16 lib/webmock/stub_registry.rb
-rw-r--r-- wheel/wheel    1137 2019-10-21 23:16 lib/webmock/stub_request_snippet.rb
-rw-r--r-- wheel/wheel     429 2019-10-21 23:16 lib/webmock/test_unit.rb
-rw-r--r-- wheel/wheel     762 2019-10-21 23:16 lib/webmock/util/hash_counter.rb
-rw-r--r-- wheel/wheel     580 2019-10-21 23:16 lib/webmock/util/hash_keys_stringifier.rb
-rw-r--r-- wheel/wheel     502 2019-10-21 23:16 lib/webmock/util/hash_validator.rb
-rw-r--r-- wheel/wheel    1726 2019-10-21 23:16 lib/webmock/util/headers.rb
-rw-r--r-- wheel/wheel    2833 2019-10-21 23:16 lib/webmock/util/json.rb
-rw-r--r-- wheel/wheel   10172 2019-10-21 23:16 lib/webmock/util/query_mapper.rb
-rw-r--r-- wheel/wheel    3679 2019-10-21 23:16 lib/webmock/util/uri.rb
-rw-r--r-- wheel/wheel     378 2019-10-21 23:16 lib/webmock/util/values_stringifier.rb
-rw-r--r-- wheel/wheel    3981 2019-10-21 23:16 lib/webmock/util/version_checker.rb
-rw-r--r-- wheel/wheel      75 2019-10-21 23:16 lib/webmock/version.rb
-rw-r--r-- wheel/wheel    4628 2019-10-21 23:16 lib/webmock/webmock.rb
-rw-r--r-- wheel/wheel     799 2019-10-21 23:16 minitest/test_helper.rb
-rw-r--r-- wheel/wheel     285 2019-10-21 23:16 minitest/test_webmock.rb
-rw-r--r-- wheel/wheel    2293 2019-10-21 23:16 minitest/webmock_spec.rb
-rw-r--r-- wheel/wheel    8476 2019-10-21 23:16 spec/acceptance/async_http_client/async_http_client_spec.rb
-rw-r--r-- wheel/wheel    1565 2019-10-21 23:16 spec/acceptance/async_http_client/async_http_client_spec_helper.rb
-rw-r--r-- wheel/wheel   15998 2019-10-21 23:16 spec/acceptance/curb/curb_spec.rb
-rw-r--r-- wheel/wheel    3279 2019-10-21 23:16 spec/acceptance/curb/curb_spec_helper.rb
-rw-r--r-- wheel/wheel   13782 2019-10-21 23:16 spec/acceptance/em_http_request/em_http_request_spec.rb
-rw-r--r-- wheel/wheel    1706 2019-10-21 23:16 spec/acceptance/em_http_request/em_http_request_spec_helper.rb
-rw-r--r-- wheel/wheel    2683 2019-10-21 23:16 spec/acceptance/excon/excon_spec.rb
-rw-r--r-- wheel/wheel    1432 2019-10-21 23:16 spec/acceptance/excon/excon_spec_helper.rb
-rw-r--r-- wheel/wheel    2727 2019-10-21 23:16 spec/acceptance/http_rb/http_rb_spec.rb
-rw-r--r-- wheel/wheel    1379 2019-10-21 23:16 spec/acceptance/http_rb/http_rb_spec_helper.rb
-rw-r--r-- wheel/wheel    7137 2019-10-21 23:16 spec/acceptance/httpclient/httpclient_spec.rb
-rw-r--r-- wheel/wheel    1586 2019-10-21 23:16 spec/acceptance/httpclient/httpclient_spec_helper.rb
-rw-r--r-- wheel/wheel    2621 2019-10-21 23:16 spec/acceptance/manticore/manticore_spec.rb
-rw-r--r-- wheel/wheel     822 2019-10-21 23:16 spec/acceptance/manticore/manticore_spec_helper.rb
-rw-r--r-- wheel/wheel    4847 2019-10-21 23:16 spec/acceptance/net_http/net_http_shared.rb
-rw-r--r-- wheel/wheel   11967 2019-10-21 23:16 spec/acceptance/net_http/net_http_spec.rb
-rw-r--r-- wheel/wheel    1686 2019-10-21 23:16 spec/acceptance/net_http/net_http_spec_helper.rb
-rw-r--r-- wheel/wheel     472 2019-10-21 23:16 spec/acceptance/net_http/real_net_http_spec.rb
-rw-r--r-- wheel/wheel    4202 2019-10-21 23:16 spec/acceptance/patron/patron_spec.rb
-rw-r--r-- wheel/wheel    1365 2019-10-21 23:16 spec/acceptance/patron/patron_spec_helper.rb
-rw-r--r-- wheel/wheel   13372 2019-10-21 23:16 spec/acceptance/shared/allowing_and_disabling_net_connect.rb
-rw-r--r-- wheel/wheel    5057 2019-10-21 23:16 spec/acceptance/shared/callbacks.rb
-rw-r--r-- wheel/wheel    1330 2019-10-21 23:16 spec/acceptance/shared/complex_cross_concern_behaviors.rb
-rw-r--r-- wheel/wheel    2501 2019-10-21 23:16 spec/acceptance/shared/enabling_and_disabling_webmock.rb
-rw-r--r-- wheel/wheel     692 2019-10-21 23:16 spec/acceptance/shared/precedence_of_stubs.rb
-rw-r--r-- wheel/wheel   45440 2019-10-21 23:16 spec/acceptance/shared/request_expectations.rb
-rw-r--r-- wheel/wheel   17658 2019-10-21 23:16 spec/acceptance/shared/returning_declared_responses.rb
-rw-r--r-- wheel/wheel   30512 2019-10-21 23:16 spec/acceptance/shared/stubbing_requests.rb
-rw-r--r-- wheel/wheel    4441 2019-10-21 23:16 spec/acceptance/typhoeus/typhoeus_hydra_spec.rb
-rw-r--r-- wheel/wheel    1465 2019-10-21 23:16 spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb
-rw-r--r-- wheel/wheel    1423 2019-10-21 23:16 spec/acceptance/webmock_shared.rb
-rw-r--r-- wheel/wheel       5 2019-10-21 23:16 spec/fixtures/test.txt
-rw-r--r-- wheel/wheel    2802 2019-10-21 23:16 spec/quality_spec.rb
-rw-r--r-- wheel/wheel    1223 2019-10-21 23:16 spec/spec_helper.rb
-rw-r--r-- wheel/wheel     591 2019-10-21 23:16 spec/support/example_curl_output.txt
-rw-r--r-- wheel/wheel     200 2019-10-21 23:16 spec/support/failures.rb
-rw-r--r-- wheel/wheel    1546 2019-10-21 23:16 spec/support/my_rack_app.rb
-rw-r--r-- wheel/wheel     321 2019-10-21 23:16 spec/support/network_connection.rb
-rw-r--r-- wheel/wheel    1301 2019-10-21 23:16 spec/support/webmock_server.rb
-rw-r--r-- wheel/wheel    5541 2019-10-21 23:16 spec/unit/api_spec.rb
-rw-r--r-- wheel/wheel    6482 2019-10-21 23:16 spec/unit/errors_spec.rb
-rw-r--r-- wheel/wheel     559 2019-10-21 23:16 spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb
-rw-r--r-- wheel/wheel     356 2019-10-21 23:16 spec/unit/http_lib_adapters/http_lib_adapter_spec.rb
-rw-r--r-- wheel/wheel    1947 2019-10-21 23:16 spec/unit/matchers/hash_excluding_matcher_spec.rb
-rw-r--r-- wheel/wheel    2962 2019-10-21 23:16 spec/unit/matchers/hash_including_matcher_spec.rb
-rw-r--r-- wheel/wheel    3884 2019-10-21 23:16 spec/unit/rack_response_spec.rb
-rw-r--r-- wheel/wheel    2424 2019-10-21 23:16 spec/unit/request_body_diff_spec.rb
-rw-r--r-- wheel/wheel    8714 2019-10-21 23:16 spec/unit/request_execution_verifier_spec.rb
-rw-r--r-- wheel/wheel   32106 2019-10-21 23:16 spec/unit/request_pattern_spec.rb
-rw-r--r-- wheel/wheel    4161 2019-10-21 23:16 spec/unit/request_registry_spec.rb
-rw-r--r-- wheel/wheel    2498 2019-10-21 23:16 spec/unit/request_signature_snippet_spec.rb
-rw-r--r-- wheel/wheel    6097 2019-10-21 23:16 spec/unit/request_signature_spec.rb
-rw-r--r-- wheel/wheel    7126 2019-10-21 23:16 spec/unit/request_stub_spec.rb
-rw-r--r-- wheel/wheel    9061 2019-10-21 23:16 spec/unit/response_spec.rb
-rw-r--r-- wheel/wheel    4424 2019-10-21 23:16 spec/unit/stub_registry_spec.rb
-rw-r--r-- wheel/wheel    5544 2019-10-21 23:16 spec/unit/stub_request_snippet_spec.rb
-rw-r--r-- wheel/wheel    1065 2019-10-21 23:16 spec/unit/util/hash_counter_spec.rb
-rw-r--r-- wheel/wheel     482 2019-10-21 23:16 spec/unit/util/hash_keys_stringifier_spec.rb
-rw-r--r-- wheel/wheel     941 2019-10-21 23:16 spec/unit/util/headers_spec.rb
-rw-r--r-- wheel/wheel    1019 2019-10-21 23:16 spec/unit/util/json_spec.rb
-rw-r--r-- wheel/wheel    5563 2019-10-21 23:16 spec/unit/util/query_mapper_spec.rb
-rw-r--r-- wheel/wheel   13265 2019-10-21 23:16 spec/unit/util/uri_spec.rb
-rw-r--r-- wheel/wheel    2915 2019-10-21 23:16 spec/unit/util/version_checker_spec.rb
-rw-r--r-- wheel/wheel     569 2019-10-21 23:16 spec/unit/webmock_spec.rb
-rw-r--r-- wheel/wheel     714 2019-10-21 23:16 test/http_request.rb
-rw-r--r-- wheel/wheel    4995 2019-10-21 23:16 test/shared_test.rb
-rw-r--r-- wheel/wheel     623 2019-10-21 23:16 test/test_helper.rb
-rw-r--r-- wheel/wheel     199 2019-10-21 23:16 test/test_webmock.rb
-rw-r--r-- wheel/wheel    2408 2019-10-21 23:16 webmock.gemspec

## Unpacked size
604630 bytes
After (details)
## Compressed .gem size
38400 bytes

## Gem contents
-rw-r--r-- wheel/wheel    2332 2019-10-21 23:16 lib/webmock.rb
-rw-r--r-- wheel/wheel    3782 2019-10-21 23:16 lib/webmock/api.rb
-rw-r--r-- wheel/wheel     218 2019-10-21 23:16 lib/webmock/assertion_failure.rb
-rw-r--r-- wheel/wheel     815 2019-10-21 23:16 lib/webmock/callback_registry.rb
-rw-r--r-- wheel/wheel     424 2019-10-21 23:16 lib/webmock/config.rb
-rw-r--r-- wheel/wheel     139 2019-10-21 23:16 lib/webmock/cucumber.rb
-rw-r--r-- wheel/wheel     163 2019-10-21 23:16 lib/webmock/deprecation.rb
-rw-r--r-- wheel/wheel     474 2019-10-21 23:16 lib/webmock/errors.rb
-rw-r--r-- wheel/wheel    6549 2019-10-21 23:16 lib/webmock/http_lib_adapters/async_http_client_adapter.rb
-rw-r--r-- wheel/wheel   10055 2019-10-21 23:16 lib/webmock/http_lib_adapters/curb_adapter.rb
-rw-r--r-- wheel/wheel    7154 2019-10-21 23:16 lib/webmock/http_lib_adapters/em_http_request_adapter.rb
-rw-r--r-- wheel/wheel    5251 2019-10-21 23:16 lib/webmock/http_lib_adapters/excon_adapter.rb
-rw-r--r-- wheel/wheel     152 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_lib_adapter.rb
-rw-r--r-- wheel/wheel     329 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb
-rw-r--r-- wheel/wheel     351 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/client.rb
-rw-r--r-- wheel/wheel     408 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/request.rb
-rw-r--r-- wheel/wheel    1074 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/response.rb
-rw-r--r-- wheel/wheel     557 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/streamer.rb
-rw-r--r-- wheel/wheel    1744 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb/webmock.rb
-rw-r--r-- wheel/wheel     836 2019-10-21 23:16 lib/webmock/http_lib_adapters/http_rb_adapter.rb
-rw-r--r-- wheel/wheel    7847 2019-10-21 23:16 lib/webmock/http_lib_adapters/httpclient_adapter.rb
-rw-r--r-- wheel/wheel    5066 2019-10-21 23:16 lib/webmock/http_lib_adapters/manticore_adapter.rb
-rw-r--r-- wheel/wheel   11019 2019-10-21 23:16 lib/webmock/http_lib_adapters/net_http.rb
-rw-r--r-- wheel/wheel    1270 2019-10-21 23:16 lib/webmock/http_lib_adapters/net_http_response.rb
-rw-r--r-- wheel/wheel    4742 2019-10-21 23:16 lib/webmock/http_lib_adapters/patron_adapter.rb
-rw-r--r-- wheel/wheel    5780 2019-10-21 23:16 lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb
-rw-r--r-- wheel/wheel     229 2019-10-21 23:16 lib/webmock/matchers/any_arg_matcher.rb
-rw-r--r-- wheel/wheel     575 2019-10-21 23:16 lib/webmock/matchers/hash_argument_matcher.rb
-rw-r--r-- wheel/wheel     454 2019-10-21 23:16 lib/webmock/matchers/hash_excluding_matcher.rb
-rw-r--r-- wheel/wheel     495 2019-10-21 23:16 lib/webmock/matchers/hash_including_matcher.rb
-rw-r--r-- wheel/wheel    1020 2019-10-21 23:16 lib/webmock/minitest.rb
-rw-r--r-- wheel/wheel    1784 2019-10-21 23:16 lib/webmock/rack_response.rb
-rw-r--r-- wheel/wheel    1525 2019-10-21 23:16 lib/webmock/request_body_diff.rb
-rw-r--r-- wheel/wheel    2305 2019-10-21 23:16 lib/webmock/request_execution_verifier.rb
-rw-r--r-- wheel/wheel   11663 2019-10-21 23:16 lib/webmock/request_pattern.rb
-rw-r--r-- wheel/wheel     822 2019-10-21 23:16 lib/webmock/request_registry.rb
-rw-r--r-- wheel/wheel    1327 2019-10-21 23:16 lib/webmock/request_signature.rb
-rw-r--r-- wheel/wheel    1616 2019-10-21 23:16 lib/webmock/request_signature_snippet.rb
-rw-r--r-- wheel/wheel    2690 2019-10-21 23:16 lib/webmock/request_stub.rb
-rw-r--r-- wheel/wheel    4005 2019-10-21 23:16 lib/webmock/response.rb
-rw-r--r-- wheel/wheel     675 2019-10-21 23:16 lib/webmock/responses_sequence.rb
-rw-r--r-- wheel/wheel     887 2019-10-21 23:16 lib/webmock/rspec.rb
-rw-r--r-- wheel/wheel     601 2019-10-21 23:16 lib/webmock/rspec/matchers.rb
-rw-r--r-- wheel/wheel    1798 2019-10-21 23:16 lib/webmock/rspec/matchers/request_pattern_matcher.rb
-rw-r--r-- wheel/wheel    1534 2019-10-21 23:16 lib/webmock/rspec/matchers/webmock_matcher.rb
-rw-r--r-- wheel/wheel    1675 2019-10-21 23:16 lib/webmock/stub_registry.rb
-rw-r--r-- wheel/wheel    1137 2019-10-21 23:16 lib/webmock/stub_request_snippet.rb
-rw-r--r-- wheel/wheel     429 2019-10-21 23:16 lib/webmock/test_unit.rb
-rw-r--r-- wheel/wheel     762 2019-10-21 23:16 lib/webmock/util/hash_counter.rb
-rw-r--r-- wheel/wheel     580 2019-10-21 23:16 lib/webmock/util/hash_keys_stringifier.rb
-rw-r--r-- wheel/wheel     502 2019-10-21 23:16 lib/webmock/util/hash_validator.rb
-rw-r--r-- wheel/wheel    1726 2019-10-21 23:16 lib/webmock/util/headers.rb
-rw-r--r-- wheel/wheel    2833 2019-10-21 23:16 lib/webmock/util/json.rb
-rw-r--r-- wheel/wheel   10172 2019-10-21 23:16 lib/webmock/util/query_mapper.rb
-rw-r--r-- wheel/wheel    3679 2019-10-21 23:16 lib/webmock/util/uri.rb
-rw-r--r-- wheel/wheel     378 2019-10-21 23:16 lib/webmock/util/values_stringifier.rb
-rw-r--r-- wheel/wheel    3981 2019-10-21 23:16 lib/webmock/util/version_checker.rb
-rw-r--r-- wheel/wheel      75 2019-10-21 23:16 lib/webmock/version.rb
-rw-r--r-- wheel/wheel    4628 2019-10-21 23:16 lib/webmock/webmock.rb

## Unpacked size
147093 bytes

@t-richards t-richards closed this Aug 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant