README.md in vcr-2.5.0 vs README.md in vcr-2.6.0
- old
+ new
@@ -1,10 +1,10 @@
# VCR
Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.
-[![Build Status](https://secure.travis-ci.org/vcr/vcr.png?branch=master)](http://travis-ci.org/vcr/vcr)
+[![Build Status](https://secure.travis-ci.org/vcr/vcr.png?branch=master)](http://travis-ci.org/vcr/vcr) [![Code Climate](https://codeclimate.com/github/vcr/vcr.png)](https://codeclimate.com/github/vcr/vcr)
## Synopsis
``` ruby
require 'rubygems'
@@ -17,12 +17,12 @@
end
class VCRTest < Test::Unit::TestCase
def test_example_dot_com
VCR.use_cassette('synopsis') do
- response = Net::HTTP.get_response(URI('http://www.iana.org/domains/example/'))
- assert_match /Example Domains/, response.body
+ response = Net::HTTP.get_response(URI('http://www.iana.org/domains/reserved'))
+ assert_match /Example domains/, response.body
end
end
end
```
@@ -111,11 +111,11 @@
* Report issues on [GitHub Issues](http://github.com/vcr/vcr/issues).
* Pull requests are very welcome! Please include spec and/or feature coverage for every patch,
and create a topic branch for every separate change you make.
* See the [Contributing](https://github.com/vcr/vcr/blob/master/CONTRIBUTING.md)
guide for instructions on running the specs and features.
-* Code quality metrics are checked by [Code Climate](https://codeclimate.com/github/myronmarston/vcr).
+* Code quality metrics are checked by [Code Climate](https://codeclimate.com/github/vcr/vcr).
* Documentation is generated with [YARD](http://yardoc.org/) ([cheat sheet](http://cheat.errtheblog.com/s/yard/)).
To generate while developing:
```
yard server --reload
@@ -151,55 +151,67 @@
* [Eric Allam](http://github.com/rubymaverick)
* [Ezekiel Templin](https://github.com/ezkl)
* [Flaviu Simihaian](https://github.com/closedbracket)
* [Gordon Wilson](https://github.com/gordoncww)
* [Hans Hasselberg](https://github.com/i0rek)
+* [Ian Cordasco](https://github.com/sigmavirus24)
* [Ingemar](https://github.com/ingemar)
* [Jacob Green](https://github.com/Jacobkg)
+* [James Bence](https://github.com/jbence)
* [Jay Shepherd](https://github.com/jayshepherd)
* [Jeff Pollard](https://github.com/Fluxx)
* [Joe Nelson](https://github.com/begriffs)
* [Jonathan Tron](https://github.com/JonathanTron)
* [Justin Smestad](https://github.com/jsmestad)
* [Karl Baum](https://github.com/kbaum)
+* [Kurt Funai](https://github.com/kurtfunai)
* [Luke van der Hoeven](https://github.com/plukevdh)
* [Mark Burns](https://github.com/markburns)
* [Max Riveiro](https://github.com/kavu)
* [Michael Lavrisha](https://github.com/vrish88)
* [Mislav Marohnić](https://github.com/mislav)
* [Nathaniel Bibler](https://github.com/nbibler)
+* [Noah Davis](https://github.com/noahd1)
* [Oliver Searle-Barnes](https://github.com/opsb)
* [Omer Rauchwerger](https://github.com/rauchy)
* [Paco Guzmán](https://github.com/pacoguzman)
* [playupchris](https://github.com/playupchris)
+* [Ron Smith](https://github.com/ronwsmith)
* [Ryan Bates](https://github.com/ryanb)
* [Ryan Burrows](https://github.com/rhburrows)
* [Ryan Castillo](https://github.com/rmcastil)
* [Sathya Sekaran](https://github.com/sfsekaran)
* [Scott Carleton](https://github.com/ScotterC)
* [Shay Frendt](https://github.com/shayfrendt)
* [Steve Faulkner](https://github.com/southpolesteve)
-* [Steven Anderson](https://github.com/bendycode)
+* [Stephen Anderson](https://github.com/bendycode)
* [Tyler Hunt](https://github.com/tylerhunt)
+* [Uģis Ozols](https://github.com/ugisozols)
+* [vzvu3k6k](https://github.com/vzvu3k6k)
* [Wesley Beary](https://github.com/geemus)
## Ports in other languages
-* [Betamax](https://github.com/robfletcher/betamax) (Groovy)
+* [Betamax](https://github.com/robfletcher/betamax) (Groovy/JVM)
+* [Betamax](https://github.com/sigmavirus24/betamax) (Python)
+* [HAVCR](https://github.com/cordawyn/havcr) (Haskell)
* [Mimic](https://github.com/acoulton/mimic) (PHP/Kohana)
-* [Nock](https://github.com/flatiron/nock) (JavaScript/Node)
+* [Nock-VCR](https://github.com/carbonfive/nock-vcr) (JavaScript/Node)
* [NSURLConnectionVCR](https://bitbucket.org/martijnthe/nsurlconnectionvcr) (Objective-C)
+* [PHP-VCR](https://github.com/adri/php-vcr) (PHP)
* [TapeDeck.js](https://github.com/EndangeredMassa/TapeDeck.js) (JavaScript)
* [VCR.js](https://github.com/elcuervo/vcr.js) (JavaScript)
* [VCR.py](https://github.com/kevin1024/vcrpy) (Python)
* [VCRURLConnection](https://github.com/dstnbrkr/VCRURLConnection) (Objective-C)
* [vcr-clj](https://github.com/ifesdjeen/vcr-clj) (Clojure)
+* [VHS](https://github.com/diegoeche/vhs) (Erlang)
## Similar Libraries in Ruby
* [Ephemeral Response](https://github.com/sandro/ephemeral_response)
* [Net::HTTP Spy](http://github.com/martinbtt/net-http-spy)
* [NetRecorder](https://github.com/chrisyoung/netrecorder)
+* [Puffing Billy](https://github.com/oesmith/puffing-billy)
* [REST-assured](https://github.com/BBC/REST-assured)
* [Stale Fish](https://github.com/jsmestad/stale_fish)
* [WebFixtures](http://github.com/trydionel/web_fixtures)
## Copyright