Skip to content

Commit

Permalink
Fix broken build due to Hashdiff deprecation (#758)
Browse files Browse the repository at this point in the history
webmock uses the hashdiff gem, which recently introduced a deprecation
warning regarding the spelling of the `Hashdiff` constant.

```
The HashDiff constant used by this gem conflicts with another gem of a similar name.
As of version 1.0 the HashDiff constant will be completely removed and replaced by Hashdiff.
```

This warning in the output causes one of the vcr cucumber tests to fail.

The fix is to update to the latest version of the hashdiff gem, which is
currently in beta.
  • Loading branch information
mattbrictson authored and olleolleolle committed Jun 20, 2019
1 parent 6c98fe7 commit 47fe1fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vcr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "yard"
spec.add_development_dependency "rack"
spec.add_development_dependency "webmock"
spec.add_development_dependency "hashdiff", ">= 1.0.0.beta1", "< 2.0.0"
spec.add_development_dependency "cucumber", "~> 2.0.2"
spec.add_development_dependency "aruba", "~> 0.5.3"
spec.add_development_dependency "faraday", "~> 0.11.0"
Expand Down

0 comments on commit 47fe1fd

Please sign in to comment.