1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
vcr
===
[](https://codeclimate.com/github/vcr/vcr)
[](https://codeclimate.com/github/vcr/vcr)
[](https://travis-ci.org/vcr/vcr)
[](http://github.com/vcr/vcr/releases)
[](http://opensource.org/licenses/MIT)
[](https://rubygems.org/gems/vcr)
[](https://opencollective.com/vcr#backer)
[](https://opencollective.com/vcr#sponsor)
Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.
**Help Wanted**
We're looking for new maintainers. If you'd like to help maintain a well-used gem please create an issue so we can add you.
Usage
=====
``` ruby
require 'rubygems'
require 'test/unit'
require 'vcr'
VCR.configure do |config|
config.cassette_library_dir = "fixtures/vcr_cassettes"
config.hook_into :webmock
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/reserved'))
assert_match /Example domains/, response.body
end
end
end
```
Run this test once, and VCR will record the HTTP request to `fixtures/vcr_cassettes/synopsis.yml`. Run it again, and VCR will replay the response from iana.org when the HTTP request is made. This test is now fast (no real HTTP requests are made anymore), deterministic (the test will continue to pass, even if you are offline, or iana.org goes down for maintenance) and accurate (the response will contain the same headers and body you get from a real request). You can use a different cassette library directory (e.g., "test/vcr_cassettes").
**Rails and Minitest:**
Do *not* use 'test/fixtures' as the directory if you're using Rails and Minitest (Rails will instead transitively load any files in that directory as models).
**Features**
* 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](https://github.com/bblimke/webmock)
* [Typhoeus](https://github.com/typhoeus/typhoeus)
* [Faraday](https://github.com/lostisland/faraday)
* [Excon](https://github.com/excon/excon)
* Supports multiple HTTP libraries:
* [Patron](https://github.com/toland/patron) (when using WebMock)
* [Curb](https://github.com/taf2/curb) (when using WebMock -- only supports Curl::Easy at the moment)
* [HTTPClient](https://github.com/nahi/httpclient) (when using WebMock)
* [em-http-request](https://github.com/igrigorik/em-http-request) (when using WebMock)
* [Net::HTTP](http://www.ruby-doc.org/stdlib/libdoc/net/http/rdoc/index.html) (when using WebMock)
* [Typhoeus](https://github.com/typhoeus/typhoeus) (Typhoeus::Hydra, but not Typhoeus::Easy or Typhoeus::Multi)
* [Excon](https://github.com/geemus/excon)
* [Faraday](https://github.com/lostisland/faraday)
* And of course any library built on Net::HTTP, such as [Mechanize](https://github.com/sparklemotion/mechanize), [HTTParty](https://github.com/jnunemaker/httparty) or [Rest Client](https://github.com/rest-client/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.
* Supports filtering sensitive data from the response body
The docs come in two flavors:
* The [relish docs](https://relishapp.com/vcr/vcr/docs) contain example-based documentation (VCR's Cucumber suite, in fact). It's a good place to look when you are first getting started with VCR, or if you want to see an example of how to use a feature.
* The [rubydoc.info docs](http://www.rubydoc.info/gems/vcr/frames) contain API documentation. The API docs contain detailed info about all of VCR's public API.
* See the [Upgrade](https://github.com/vcr/vcr/blob/master/Upgrade.md) doc for info about what's new and changed in VCR 2.0.
There is also a Railscast, which will get you up and running in no-time http://railscasts.com/episodes/291-testing-with-vcr.
**Release Policy**
VCR follows the principles of [semantic versioning](http://semver.org/). The [API documentation](http://rubydoc.info/gems/vcr/frames) defines VCR's public API. Patch level releases contain only bug fixes. Minor releases contain backward-compatible new features. Major new releases contain backwards-incompatible changes to the public API.
**Ruby Interpreter Compatibility**
VCR has been tested on the following ruby interpreters:
* MRI 1.9.3
* MRI 2.0.0
* MRI 2.1
* MRI 2.2
* MRI 2.3.0
* JRuby
* Rubinius
Note that as of VCR 3, 1.8.7 and 1.9.2 are not supported.
**Development**
* Source hosted on [GitHub](http://github.com/vcr/vcr).
* Direct questions and discussions to the [mailing list](http://groups.google.com/group/vcr-ruby).
* 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/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
```
**Ports in Other Languages**
* [Betamax](https://github.com/sigmavirus24/betamax) (Python)
* [VCR.py](https://github.com/kevin1024/vcrpy) (Python)
* [Betamax](https://github.com/thegreatape/betamax) (Go)
* [DVR](https://github.com/orchestrate-io/dvr) (Go)
* [Go VCR](https://github.com/dnaeon/go-vcr) (Go)
* [Betamax](https://github.com/wjlroe/betamax) (Clojure)
* [vcr-clj](https://github.com/ifesdjeen/vcr-clj) (Clojure)
* [scotch](https://github.com/mleech/scotch) (C#/.NET)
* [Betamax.NET](https://github.com/mfloryan/Betamax.Net) (C#/.NET)
* [ExVCR](https://github.com/parroty/exvcr) (Elixir)
* [HAVCR](https://github.com/cordawyn/havcr) (Haskell)
* [Mimic](https://github.com/acoulton/mimic) (PHP/Kohana)
* [PHP-VCR](https://github.com/php-vcr/php-vcr) (PHP)
* [Nock-VCR](https://github.com/carbonfive/nock-vcr) (JavaScript/Node)
* [Sepia](https://github.com/linkedin/sepia) (JavaScript/Node)
* [VCR.js](https://github.com/elcuervo/vcr.js) (JavaScript)
* [yakbak](https://github.com/flickr/yakbak) (JavaScript/Node)
* [NSURLConnectionVCR](https://bitbucket.org/martijnthe/nsurlconnectionvcr) (Objective-C)
* [VCRURLConnection](https://github.com/dstnbrkr/VCRURLConnection) (Objective-C)
* [DVR](https://github.com/venmo/DVR) (Swift)
* [VHS](https://github.com/diegoeche/vhs) (Erlang)
* [Betamax](https://github.com/betamaxteam/betamax) (Java)
* [http_replayer](https://github.com/ucarion/http_replayer) (Rust)
* [OkReplay](https://github.com/airbnb/okreplay) (Java/Android)
* [vcr](https://github.com/ropensci/vcr) (R)
**Related Projects**
* [Mr. Video](https://github.com/quidproquo/mr_video) (Rails engine for managing VCR cassettes and episodes)
**Similar Libraries in Ruby**
* [Ephemeral Response](https://github.com/sandro/ephemeral_response)
* [Net::HTTP Spy](https://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/artemave/REST-assured)
* [Stale Fish](https://github.com/jsmestad/stale_fish)
* [WebFixtures](https://github.com/trydionel/web_fixtures)
Credits
=======
* [Aslak Hellesøy](https://github.com/aslakhellesoy) for [Cucumber](https://github.com/aslakhellesoy/cucumber).
* [Bartosz Blimke](https://github.com/bblimke) for [WebMock](https://github.com/bblimke/webmock).
* [Chris Kampmeier](https://github.com/chrisk) for [FakeWeb](https://github.com/chrisk/fakeweb).
* [Chris Young](https://github.com/chrisyoung) for [NetRecorder](https://github.com/chrisyoung/netrecorder),
the inspiration for VCR.
* [David Balatero](https://github.com/dbalatero) and [Hans Hasselberg](https://github.com/i0rek)
for help with [Typhoeus](https://github.com/typhoeus/typhoeus) support.
* [Wesley Beary](https://github.com/geemus) for help with [Excon](https://github.com/geemus/excon)
support.
* [Jacob Green](https://github.com/Jacobkg) for help with ongoing VCR
maintenance.
* [Jan Berdajs](https://github.com/mrbrdo) and [Daniel Berger](https://github.com/djberg96)
for improvements to thread-safety.
Thanks also to the following people who have contributed patches or helpful suggestions:
* [Aaron Brethorst](https://github.com/aaronbrethorst)
* [Alexander Wenzowski](https://github.com/wenzowski)
* [Austen Ito](https://github.com/austenito)
* [Avdi Grimm](https://github.com/avdi)
* [Bartosz Blimke](http://github.com/bblimke)
* [Benjamin Oakes](https://github.com/benjaminoakes)
* [Ben Hutton](https://github.com/benhutton)
* [Bradley Isotope](https://github.com/bradleyisotope)
* [Carlos Kirkconnell](https://github.com/kirkconnell)
* [Chad Jolly](https://github.com/cjolly)
* [Chris Le](https://github.com/chrisle)
* [Chris Gunther](https://github.com/cgunther)
* [Eduardo Maia](https://github.com/emaiax)
* [Eric Allam](https://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)
* [Herman Verschooten](https://github.com/Hermanverschooten)
* [Ian Cordasco](https://github.com/sigmavirus24)
* [Ingemar](https://github.com/ingemar)
* [Ilya Scharrenbroich](https://github.com/quidproquo)
* [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)
* [Kris Luminar](https://github.com/kris-luminar)
* [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)
* [Michiel de Mare](https://github.com/mdemare)
* [Mike Dalton](https://github.com/kcdragon)
* [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)
* [Paul Morgan](https://github.com/jumanjiman)
* [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)
* [Stephen Anderson](https://github.com/bendycode)
* [Todd Lunter](https://github.com/tlunter)
* [Tyler Hunt](https://github.com/tylerhunt)
* [Uģis Ozols](https://github.com/ugisozols)
* [vzvu3k6k](https://github.com/vzvu3k6k)
* [Wesley Beary](https://github.com/geemus)
# Backers
Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/vcr#backer)]
<a href="https://opencollective.com/vcr/backer/0/website" target="_blank"><img src="https://opencollective.com/vcr/backer/0/avatar"></a>
<a href="https://opencollective.com/vcr/backer/1/website" target="_blank"><img src="https://opencollective.com/vcr/backer/1/avatar"></a>
<a href="https://opencollective.com/vcr/backer/2/website" target="_blank"><img src="https://opencollective.com/vcr/backer/2/avatar"></a>
<a href="https://opencollective.com/vcr/backer/3/website" target="_blank"><img src="https://opencollective.com/vcr/backer/3/avatar"></a>
<a href="https://opencollective.com/vcr/backer/4/website" target="_blank"><img src="https://opencollective.com/vcr/backer/4/avatar"></a>
<a href="https://opencollective.com/vcr/backer/5/website" target="_blank"><img src="https://opencollective.com/vcr/backer/5/avatar"></a>
<a href="https://opencollective.com/vcr/backer/6/website" target="_blank"><img src="https://opencollective.com/vcr/backer/6/avatar"></a>
<a href="https://opencollective.com/vcr/backer/7/website" target="_blank"><img src="https://opencollective.com/vcr/backer/7/avatar"></a>
<a href="https://opencollective.com/vcr/backer/8/website" target="_blank"><img src="https://opencollective.com/vcr/backer/8/avatar"></a>
<a href="https://opencollective.com/vcr/backer/9/website" target="_blank"><img src="https://opencollective.com/vcr/backer/9/avatar"></a>
<a href="https://opencollective.com/vcr/backer/10/website" target="_blank"><img src="https://opencollective.com/vcr/backer/10/avatar"></a>
<a href="https://opencollective.com/vcr/backer/11/website" target="_blank"><img src="https://opencollective.com/vcr/backer/11/avatar"></a>
<a href="https://opencollective.com/vcr/backer/12/website" target="_blank"><img src="https://opencollective.com/vcr/backer/12/avatar"></a>
<a href="https://opencollective.com/vcr/backer/13/website" target="_blank"><img src="https://opencollective.com/vcr/backer/13/avatar"></a>
<a href="https://opencollective.com/vcr/backer/14/website" target="_blank"><img src="https://opencollective.com/vcr/backer/14/avatar"></a>
<a href="https://opencollective.com/vcr/backer/15/website" target="_blank"><img src="https://opencollective.com/vcr/backer/15/avatar"></a>
<a href="https://opencollective.com/vcr/backer/16/website" target="_blank"><img src="https://opencollective.com/vcr/backer/16/avatar"></a>
<a href="https://opencollective.com/vcr/backer/17/website" target="_blank"><img src="https://opencollective.com/vcr/backer/17/avatar"></a>
<a href="https://opencollective.com/vcr/backer/18/website" target="_blank"><img src="https://opencollective.com/vcr/backer/18/avatar"></a>
<a href="https://opencollective.com/vcr/backer/19/website" target="_blank"><img src="https://opencollective.com/vcr/backer/19/avatar"></a>
<a href="https://opencollective.com/vcr/backer/20/website" target="_blank"><img src="https://opencollective.com/vcr/backer/20/avatar"></a>
<a href="https://opencollective.com/vcr/backer/21/website" target="_blank"><img src="https://opencollective.com/vcr/backer/21/avatar"></a>
<a href="https://opencollective.com/vcr/backer/22/website" target="_blank"><img src="https://opencollective.com/vcr/backer/22/avatar"></a>
<a href="https://opencollective.com/vcr/backer/23/website" target="_blank"><img src="https://opencollective.com/vcr/backer/23/avatar"></a>
<a href="https://opencollective.com/vcr/backer/24/website" target="_blank"><img src="https://opencollective.com/vcr/backer/24/avatar"></a>
<a href="https://opencollective.com/vcr/backer/25/website" target="_blank"><img src="https://opencollective.com/vcr/backer/25/avatar"></a>
<a href="https://opencollective.com/vcr/backer/26/website" target="_blank"><img src="https://opencollective.com/vcr/backer/26/avatar"></a>
<a href="https://opencollective.com/vcr/backer/27/website" target="_blank"><img src="https://opencollective.com/vcr/backer/27/avatar"></a>
<a href="https://opencollective.com/vcr/backer/28/website" target="_blank"><img src="https://opencollective.com/vcr/backer/28/avatar"></a>
<a href="https://opencollective.com/vcr/backer/29/website" target="_blank"><img src="https://opencollective.com/vcr/backer/29/avatar"></a>
# Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/vcr#sponsor)]
<a href="https://opencollective.com/vcr/sponsor/0/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/0/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/1/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/1/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/2/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/2/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/3/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/3/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/4/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/4/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/5/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/5/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/6/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/6/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/7/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/7/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/8/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/8/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/9/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/9/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/10/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/10/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/11/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/11/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/12/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/12/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/13/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/13/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/14/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/14/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/15/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/15/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/16/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/16/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/17/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/17/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/18/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/18/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/19/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/19/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/20/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/20/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/21/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/21/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/22/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/22/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/23/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/23/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/24/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/24/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/25/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/25/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/26/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/26/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/27/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/27/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/28/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/28/avatar"></a>
<a href="https://opencollective.com/vcr/sponsor/29/website" target="_blank"><img src="https://opencollective.com/vcr/sponsor/29/avatar"></a>
Copyright
=========
Copyright (c) 2010-2018 Myron Marston
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|