lib/uaa/info.rb in cf-uaa-lib-3.13.0 vs lib/uaa/info.rb in cf-uaa-lib-3.14.1
- old
+ new
@@ -29,13 +29,11 @@
# @param [Hash] options can be
# * +:symbolize_keys+, If set to true, response hashes will have symbols for their keys, otherwise
# string keys are returned.
def initialize(target, options = {})
self.target = target
- self.skip_ssl_validation = options[:skip_ssl_validation]
- self.ssl_ca_file = options[:ssl_ca_file]
- self.ssl_cert_store = options[:ssl_cert_store]
self.symbolize_keys = options[:symbolize_keys]
+ initialize_http_options(options)
end
# sets whether the keys in returned hashes should be symbols.
# @return [Boolean] the new state
def symbolize_keys=(bool)