Scott Chamberlain
Scott Chamberlain
Could look for keywords like key/token etc and throw warning if found
cc @aaronwolen In our work to fix how webmockr/vcr handle bodies correctly, I noticed that we cannot re-create requests that have an upload passed directly to body (not in a...
```ruby def use_cassettes(cassettes, &block) return use_cassette(cassettes.last[:name]) { block.call } if cassettes.length == 1 cassette = cassettes.pop use_cassette(cassette[:name], cassette[:options]) do use_cassettes(cassettes, &block) end end ``` (above has changed I think, in...
In going through the process of submitting a new version of a package that uses vcr, i was re-recording cassettes with the newest vcr and webmockr versions on cran. And...
my hunch is this is not used correctly right now It's used in the `HTTPInteractionList` class in the method `matching_used_interaction_for` at https://github.com/ropensci/vcr/blob/master/R/http_interaction_list.R#L225 & usage in ruby vcr https://github.com/vcr/vcr/blob/master/lib/vcr/cassette/http_interaction_list.rb#L91-L94 demonstration of...
It would make it easier to re-record cassettes, delete certain ones, etc. if there were fxns to tell the user what cassettes were associated with which test files and within...
Some responses may have content that the user doesn't want to be on the public web unsecured. We currently have ability to replace sensitive strings with placeholders, but not the...
see https://github.com/vcr/vcr/pull/765
(via bikeshed pod wrt ruby vcr pain points)