@@ -26,8 +26,8 @@ class VCRTest < Test::Unit::TestCase
2626end
2727```
2828
29- Run this test once, and VCR will record the http request to ` fixtures/vcr_cassettes/synopsis.yml ` . Run it again, and VCR
30- will replay the response from iana.org when the http request is made. This test is now fast (no real HTTP requests are
29+ Run this test once, and VCR will record the HTTP request to ` fixtures/vcr_cassettes/synopsis.yml ` . Run it again, and VCR
30+ will replay the response from iana.org when the HTTP request is made. This test is now fast (no real HTTP requests are
3131made anymore), deterministic (the test will continue to pass, even if you are offline, or iana.org goes down for
3232maintenance) and accurate (the response will contain the same headers and body you get from a real request).
3333
@@ -61,18 +61,18 @@ maintenance) and accurate (the response will contain the same headers and body y
6161* Dynamic responses are supported using ERB.
6262* Automatically re-records cassettes on a configurable regular interval to keep them fresh and current.
6363* Disables all HTTP requests that you don't explicitly allow.
64- * Simple cucumber integration is provided using tags.
65- * Includes convenient RSpec macro and integration with RSpec 2 metadata.
66- * Known to work well with many popular ruby libraries including RSpec 1 & 2, Cucumber, Test::Unit,
67- Capybara, Mechanize, Rest- Client and HTTParty.
64+ * Simple Cucumber integration is provided using tags.
65+ * Includes convenient RSpec macros and integration with RSpec 2 metadata.
66+ * Known to work well with many popular Ruby libraries including RSpec 1 & 2, Cucumber, Test::Unit,
67+ Capybara, Mechanize, Rest Client and HTTParty.
6868* Includes Rack and Faraday middleware.
6969
7070## Usage
7171
7272The docs come in two flavors:
7373
7474* The [ relish docs] ( https://relishapp.com/vcr/vcr/docs ) contain
75- example-based documentation (VCR's cucumber suite, in fact). It's a
75+ example-based documentation (VCR's Cucumber suite, in fact). It's a
7676 good place to look when you are first getting started with VCR, or if
7777 you want to see an example of how to use a feature.
7878* The [ rubydoc.info docs] ( http://rubydoc.info/gems/vcr/frames ) contain
@@ -82,12 +82,12 @@ The docs come in two flavors:
8282See the [ Upgrade] ( https://github.com/vcr/vcr/blob/master/Upgrade.md ) doc
8383for info about what's new and changed in VCR 2.0.
8484
85- There is also a Railscast, which will get you up and running in no-time http://railscasts.com/episodes/291-testing-with-vcr
85+ There is also a Railscast, which will get you up and running in no-time http://railscasts.com/episodes/291-testing-with-vcr .
8686
8787## Release Policy
8888
8989VCR follows the principles of [ semantic versioning] ( http://semver.org/ ) .
90- The [ API documentation] ( http://rubydoc.info/gems/vcr/frames ) define
90+ The [ API documentation] ( http://rubydoc.info/gems/vcr/frames ) defines
9191VCR's public API. Patch level releases contain only bug fixes. Minor
9292releases contain backward-compatible new features. Major new releases
9393contain backwards-incompatible changes to the public API.
@@ -201,7 +201,7 @@ Thanks also to the following people who have contributed patches or helpful sugg
201201* [ vzvu3k6k] ( https://github.com/vzvu3k6k )
202202* [ Wesley Beary] ( https://github.com/geemus )
203203
204- ## Ports in other languages
204+ ## Ports in Other Languages
205205
206206* [ Betamax] ( https://github.com/robfletcher/betamax ) (Groovy/JVM)
207207* [ Betamax] ( https://github.com/sigmavirus24/betamax ) (Python)
0 commit comments