Skip to content

Commit

Permalink
Update webmock dependency now that 1.8.0 is out.
Browse files Browse the repository at this point in the history
  • Loading branch information
myronmarston committed Feb 20, 2012
1 parent 88b4d9d commit 580f827
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
`after_http_request(lambda { |req| req.uri =~ /amazon/ })`.
* Add `debug_logger` config option. This can be used to
troubleshoot what VCR is doing.
* Update WebMock to version that supports Excon stubbing.
* Update WebMock to version (1.8.0) that supports Excon stubbing.

## Bug Fixes

Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ end

gem 'yard'
gem 'simplecov'
gem 'webmock', :git => 'git://github.com/bblimke/webmock.git'

# Additional gems that are useful, but not required for development.
group :extras do
Expand Down
2 changes: 1 addition & 1 deletion lib/vcr/library_hooks/webmock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'vcr/request_handler'
require 'webmock'

VCR::VersionChecker.new('WebMock', WebMock.version, '1.7.8', '1.7').check_version!
VCR::VersionChecker.new('WebMock', WebMock.version, '1.8.0', '1.8').check_version!

module VCR
class LibraryHooks
Expand Down
2 changes: 1 addition & 1 deletion vcr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'shoulda', '~> 2.9.2'

s.add_development_dependency 'fakeweb', '~> 1.3.0'
s.add_development_dependency 'addressable', '~> 2.2.6'
s.add_development_dependency 'webmock', '~> 1.8.0'

s.add_development_dependency 'faraday', '~> 0.7.2'
s.add_development_dependency 'httpclient', '~> 2.1.5.2'
Expand Down

0 comments on commit 580f827

Please sign in to comment.