ruby-vcr 4.0.0-2 source package in Ubuntu

Changelog

ruby-vcr (4.0.0-2) unstable; urgency=medium

  * Team upload

  [ Utkarsh Gupta ]
  * Add salsa-ci.yml

  [ Cédric Boutillier ]
  * skip randomly failing test using concurrency (Closes: #926827)
    Thanks Santiago Vila for the patch
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Cédric Boutillier <email address hidden>  Mon, 20 Jan 2020 23:06:03 +0100

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-vcr_4.0.0-2.dsc 1.8 KiB dbcbb0adf81695c4390c87bceebb115b06c84967339773535edaf11778bdf5a0
ruby-vcr_4.0.0.orig.tar.gz 143.5 KiB 1dcc535af55e8f5eaa9990e0c7bf42f16155e5bb787acc4b5637c6a7dbd99cf5
ruby-vcr_4.0.0-2.debian.tar.xz 4.5 KiB 52cf5bd32b3073b0c526353835a05c9cba5193774023199013f0f5d9bea7febc

Available diffs

No changes file available.

Binary packages built by this source

ruby-vcr: Record and replay HTTP interactions (Ruby library)

 Record your test suite's HTTP interactions and replay them during future test
 runs for fast, deterministic, accurate tests.
 .
  * Automatically records and replays your HTTP interactions with minimal
    setup/configuration code.
  * Supports and works with the HTTP stubbing facilities of multiple libraries.
    Currently, the following are supported:
    * WebMock
    * Typhoeus
    * Faraday
    * Excon
  * Supports multiple HTTP libraries:
    * Patron (when using WebMock)
    * Curb (when using WebMock -- only supports Curl::Easy at the moment)
    * HTTPClient (when using WebMock)
    * em-http-request (when using WebMock)
    * Net::HTTP (when using WebMock)
    * Typhoeus (Typhoeus::Hydra, but not Typhoeus::Easy or Typhoeus::Multi)
    * Excon
    * Faraday
    * And of course any library built on Net::HTTP, such as Mechanize, HTTParty
      or Rest Client
  * Request matching is configurable based on HTTP method, URI, host, path, body
    and headers, or you can easily implement a custom request matcher to handle
    any need.
  * The same request can receive different responses in different tests--just
    use different cassettes.
  * The recorded requests and responses are stored on disk in a serialization
    format of your choice (currently YAML and JSON are built in, and you can
    easily implement your own custom serializer) and can easily be inspected and
    edited.
  * Dynamic responses are supported using ERB.
  * Optionally re-records cassettes on a configurable regular interval to keep
    them fresh and current.
  * Disables all HTTP requests that you don't explicitly allow.
  * Simple Cucumber integration is provided using tags.
  * Includes convenient RSpec macros and integration with RSpec 2 metadata.
  * Known to work well with many popular Ruby libraries including RSpec 1 & 2,
    Cucumber, Test::Unit, Capybara, Mechanize, Rest Client and HTTParty.
  * Includes Rack and Faraday middleware.