httpi 2.2.3 → 2.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/httpi/adapter/net_http.rb +1 -1
- data/lib/httpi/version.rb +1 -3
- metadata +1 -1
@@ -9,7 +9,7 @@ begin
|
|
9
9
|
require 'net/ntlm'
|
10
10
|
require 'net/ntlm/version' unless Net::NTLM.const_defined?(:VERSION)
|
11
11
|
unless Net::NTLM::VERSION::STRING >= '0.3.2'
|
12
|
-
raise ArgumentError
|
12
|
+
raise ArgumentError, 'Invalid version of rubyntlm. Please use v0.3.2+.'
|
13
13
|
end
|
14
14
|
rescue LoadError => e
|
15
15
|
HTTPI.logger.debug('Net::NTLM is not available. Install via gem install rubyntlm.')
|
data/lib/httpi/version.rb
CHANGED