Skip to content

Commit

Permalink
Update excon version requirement to 0.6.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
myronmarston committed Jul 16, 2011
1 parent ca1e54a commit 042a1b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/vcr/http_stubbing_adapters/excon.rb
Expand Up @@ -8,7 +8,7 @@ module Excon


class HttpConnectionNotAllowedError < StandardError; end class HttpConnectionNotAllowedError < StandardError; end


MINIMUM_VERSION = '0.6.2' MINIMUM_VERSION = '0.6.5'
MAXIMUM_VERSION = '0.6' MAXIMUM_VERSION = '0.6'


attr_writer :http_connections_allowed attr_writer :http_connections_allowed
Expand Down
4 changes: 2 additions & 2 deletions spec/vcr/http_stubbing_adapters/excon_spec.rb
Expand Up @@ -7,8 +7,8 @@
:status_message_not_exposed :status_message_not_exposed


it_performs('version checking', it_performs('version checking',
:valid => %w[ 0.6.2 0.6.99 ], :valid => %w[ 0.6.5 0.6.99 ],
:too_low => %w[ 0.5.99 0.6.1 ], :too_low => %w[ 0.5.99 0.6.4 ],
:too_high => %w[ 0.7.0 1.0.0 ] :too_high => %w[ 0.7.0 1.0.0 ]
) do ) do
before(:each) { @orig_version = Excon::VERSION } before(:each) { @orig_version = Excon::VERSION }
Expand Down

0 comments on commit 042a1b5

Please sign in to comment.