Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ruby2.5-rubygem-webmock-testsuite-2_3-2.3.2-bp153.1.16 RPM for s390x

From OpenSuSE Leap 15.3 for s390x

Name: ruby2.5-rubygem-webmock-testsuite-2_3 Distribution: SUSE Linux Enterprise 15 SP3
Version: 2.3.2 Vendor: openSUSE
Release: bp153.1.16 Build date: Mon May 10 23:22:29 2021
Group: Development/Languages/Ruby Build host: s390p23
Size: 327619 Source RPM: rubygem-webmock-2_3-2.3.2-bp153.1.16.src.rpm
Packager: https://bugs.opensuse.org
Url: http://github.com/bblimke/webmock
Summary: Test suite for webmock
Test::Unit or RSpec files, useful for developers.

Provides

Requires

License

MIT

Changelog

* Tue Feb 27 2018 factory-auto@kulow.org
  - updated to version 2.3.2
    see installed CHANGELOG.md
    [#]# 2.3.2
    * Restored support for Ruby 1.9.3 to comply with semantic versioning.
      Thanks to [Jordan Harband](https://github.com/ljharb) for reporting the problem.
* Thu Nov 16 2017 opensuse_buildservice@ojkastl.de
  - created versioned gem for version 2.3.1
* Fri Dec 16 2016 coolo@suse.com
  - updated to version 2.3.1
    see installed CHANGELOG.md
* Mon Dec 05 2016 coolo@suse.com
  - updated to version 2.3.0
    see installed CHANGELOG.md
    [#]# 2.3.0
    * Added support for Ruby 2.4
      Thanks to [Koichi ITO](https://github.com/koic)
    * Dropped support for Ruby 1.9.3
    [#]# 2.2.0
    * Added `refute_requested` as an alias for `assert_not_requested`
      Thanks to [Michael Grosser](https://github.com/grosser)
    * Raising `Net::OpenTimeout` instead of `Timeout::Error` if available when a request stub is declared `to_timeout`
      Thanks to [Gabe Martin-Dempesy](https://github.com/gabetax)
    [#]# 2.1.1
    * Added support for handling status messages in Excon responses.
      Thanks to [Tero Marttila](https://github.com/SpComb) for reporting the issue.
* Sat Jun 04 2016 coolo@suse.com
  - updated to version 2.1.0
    see installed CHANGELOG.md
    [#]# 2.1.0
    * Added support for `on_debug` callback in Curb.
      Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)
    * Added support for PATCH requests using Curb.
      Thanks to [Pavel Jurašek](https://github.com/pavel-jurasek-bcgdv-com)
* Sat May 21 2016 coolo@suse.com
  - updated to version 2.0.3
    see installed CHANGELOG.md
* Thu Apr 14 2016 coolo@suse.com
  - updated to version 1.24.3
    see installed CHANGELOG.md
    [#]# 1.24.3
    * Allow Net:HTTP headers keys to be provided as symbols if `RUBY_VERSION` >= 2.3.0
      Thanks to [Alex Kestner](https://github.com/akestner)
    * Fixed the issue with parsing query to a hash with nested array i.e. `a[][b][]=one&a[][c][]=two`
      Thanks to [Tim Diggins](https://github.com/timdiggins) for reporting the issue.
      Thanks to [Cedric Pimenta](https://github.com/cedricpim) for finding the solution.
    * Added a clear message on an attept to match a multipart encoded request body.
      WebMock does't support requests with multipart body... yet.
    * `WebMock.disable_net_connect` `:allow` option, provided as regexp, matches https URIs correctly.
    * `WebMock.disable_net_connect` `:allow` option can be set as a url string with scheme, host and port.
      WebMock.disable_net_connect!(:allow => 'https://www.google.pl')
      Thanks to [Gabriel Chaney](https://github.com/gabrieljoelc) for reporting the issue.
* Fri Mar 04 2016 coolo@suse.com
  - updated to version 1.24.2
    see installed CHANGELOG.md
    [#]# 1.24.2
    * Improve parsing of params on request
      Thanks to [Cedric Pimenta](https://github.com/cedricpim)
* Wed Mar 02 2016 coolo@suse.com
  - updated to version 1.24.1
    see installed CHANGELOG.md
    [#]# 1.24.1
    * HTTPClient adapter supports reading basic authentication credentials directly from Authorization header.
      Thanks to [Michiel Karnebeek](https://github.com/mkarnebeek)
    [#]# 1.24.0
    * Enabled support for Curb > 0.8.6
* Fri Feb 19 2016 coolo@suse.com
  - updated to version 1.23.0
    see installed CHANGELOG.md
    [#]# 1.23.0
    * `WebMock.disable_net_connect` accepts `:allow` option with an object that responds to `#call`, receiving a `URI` object and returning a boolean:
      blacklist = ['google.com', 'facebook.com', 'apple.com']
      allowed_sites = lambda{|uri|
      blacklist.none?{|site| uri.host.include?(site) }
      }
      WebMock.disable_net_connect!(:allow => allowed_sites)
      RestClient.get('www.example.org', '/')  # ===> Allowed
      RestClient.get('www.facebook.com', '/') # ===> Failure
      RestClient.get('apple.com', '/')        # ===> Failure
      Thanks to [Pablo Brasero](https://github.com/pablobm)
    * Support for HTTPClient stream responses with body chunks
      Thanks to [Cedric Pimenta](https://github.com/cedricpim)
* Thu Jan 21 2016 coolo@suse.com
  - updated to version 1.22.6
    see installed CHANGELOG.md
    [#]# 1.22.6
    * Fixes [issue](https://github.com/bblimke/webmock/issues/568) around
      WebMock restricting [Addressable](https://github.com/sporkmonger/addressable)
      version, based on Ruby 1.8.7 for all versions of Ruby.
      This change inverts that, and forces Ruby 1.8.7 users to specify in thier
      Gemfile an Addressable version < 2.4.0.
      Thanks to [PikachuEXE](https://github.com/PikachuEXE) and
      [Matthew Rudy Jacobs](https://github.com/matthewrudy).
    [#]# 1.22.5
    * Fixes [bug](https://github.com/bblimke/webmock/issues/565) where WebMock tries
      to alias a method that is deprecated in Ruby Versions > 1.9.2 ('sysread' for class 'StringIO')
      Thanks to [Marcos Acosta](https://github.com/mmaa) for discovering this bug.
    [#]# 1.22.4
    * Adds support for JSONClient (a subclass of HTTPClient)
      Thanks to [Andrew Kozin](https://github.com/nepalez)
    * Adds support for Ruby 2.3.0
      Thanks to [Charles Pence](https://github.com/cpence)
    * Adds support for [http](https://github.com/httprb/http) versions >= 1.0.0
      Thanks to [Alexey Zapparov](https://github.com/ixti)
    * Fixes support for Ruby 1.8.7 by restrciting Addressable version < 2.4.0
      Thanks to [Matthew Rudy Jacobs](https://github.com/matthewrudy)
* Tue Nov 03 2015 coolo@suse.com
  - updated to version 1.22.3
    see installed CHANGELOG.md
    [#]# 1.22.3
    * Return "effective_url" attribute in Typhoeus::Response
      Thanks to [Senya](https://github.com/cmrd-senya)
* Fri Oct 30 2015 coolo@suse.com
  - updated to version 1.22.2
    see installed CHANGELOG.md
    [#]# 1.22.2
    * Fix: prevents adding an extra =true to urls with parameters without values
      Thanks to [David Begin](https://github.com/davidbegin)
* Wed Oct 14 2015 coolo@suse.com
  - updated to version 1.22.1
    see installed CHANGELOG.md
    [#]# 1.22.1
    * Adds Rack as a development dependency and removes require rack/utils in main lib.
      Thanks to [Keenan Brock](https://github.com/kbrock)
    [#]# 1.22.0
      All the credit for preparing this release go to [David Begin](https://github.com/davidbegin)!
    * Adds [Manticore](https://github.com/cheald/manticore) support.
      Thanks to [Mike Knepper](https://github.com/mikeknep), [David Abdemoulaie](https://github.com/hobodave)
    * Update to Show a hash diff for requests that have stubs with a body.
      Thanks to [yurivm](https://github.com/yurivm)
    * Update to mirror Net::HTTP handling of headers as symbols
    * Update to ignore non-comparable-values error when sorting
      query values, because sorting is just a convience.
      Thanks to [Magne Land](https://github.com/magneland)
    * Covert Boolean values to Strings when using them to define
      the body of a request.
      Thanks to [Krzysztof Rygielski](https://github.com/riggy)
    * Fixes WebMock's parsing Multibyte characters
      Thanks to [Zhao Wen](https://github.com/VincentZhao)
    * Updates to be compatible with httpclient 2.6.0
    * Converts keys from symbols to strings when for QueryMapper.to_query
      Thanks to [Ramon Tayag](https://github.com/ramontayag)
    * Restricts http.rb version to 0.7.3 for Ruby 1.8.7
    * Fixes issue emulating em-http-request's handling of multiple requests.
      Thanks to [Matt Palmer](https://github.com/mpalmer)
    * WebMock requires only the necessary parts of crack to avoid pulling in safe_yaml
      Thanks to [Johannes Schlumberger](https://github.com/spjsschl)
* Mon Mar 30 2015 coolo@suse.com
  - updated to version 1.21.0
* Sat Feb 07 2015 coolo@suse.com
  - updated to version 1.20.4
    * Fixed support for `hash_including` matcher in RSpec 3
    [#]# 1.20.3
    * `with` method raises error if provided without options hash and without block
    * `with` and `to_return` raise an error if invoked with invalid keys in options hash.
    [#]# 1.20.2
    * WebMock provides a helpful error message if an incompatible object is given as response body.
    [#]# 1.20.1
    * `assert_requested` and `assert_not_requested` accept `at_least_times` and `at_most_times` options
    * Silenced `instance variable undefined` warnings in Curb adapted.
    [#]# 1.20.0
    * Add support for on_missing callback of Curb::Easy
    * Add at_least_times and at_most_times matchers

Files

/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/curb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/curb/curb_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/curb/curb_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/em_http_request
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/em_http_request/em_http_request_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/em_http_request/em_http_request_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/excon
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/excon/excon_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/excon/excon_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/http_rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/http_rb/http_rb_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/http_rb/http_rb_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/httpclient
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/httpclient/httpclient_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/httpclient/httpclient_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/manticore
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/manticore/manticore_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/manticore/manticore_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_shared.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http/net_http_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http/real_net_http_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/patron
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/patron/patron_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/patron/patron_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/allowing_and_disabling_net_connect.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/callbacks.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/complex_cross_concern_behaviors.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/enabling_and_disabling_webmock.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/precedence_of_stubs.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/request_expectations.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/returning_declared_responses.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared/stubbing_requests.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/typhoeus
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/webmock_shared.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/fixtures
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/fixtures/test.txt
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/quality_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/spec_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support/example_curl_output.txt
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support/failures.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support/my_rack_app.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support/network_connection.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support/webmock_server.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/api_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/errors_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/matchers
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/matchers/hash_including_matcher_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/rack_response_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_body_diff_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_execution_verifier_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_pattern_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_registry_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_signature_snippet_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_signature_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/request_stub_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/response_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/stub_registry_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/stub_request_snippet_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/hash_counter_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/hash_keys_stringifier_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/headers_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/json_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/query_mapper_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/uri_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util/version_checker_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/webmock_spec.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/http_request.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/shared_test.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/test_helper.rb
/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/test_webmock.rb


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 15:08:25 2024