Sha256: be264b15e23ab1b66b94d552536bd6a98bfa1c9760057d29becf24108d3c6e58
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
module ApiClient # ApiClient::Configuration provides a way to configure ApiClient globally. class Configuration attr_accessor :mock attr_reader :header # Return the api url. # # @return [String] the api url. def path @paths.each do |name, path| raise Exceptions::BadlyConfigured.new(name) unless path.size > 1 end @paths end # Set the api url. # # @param [String] path api url. def path=(path) path = "#{path}/" unless path[path.size - 1, 1] == '/' @paths = { :default => path } end # Set several api urls. # # @param [Hash] hash with paths to api urls. def paths=(paths = {}) @paths = {} paths.each do |name, path| if path[path.size - 1, 1] == '/' @paths[name] = path else @paths[name] = "#{path}/" end end end # Set the default params of header. # # @param [Hash] header the default header for requisitions. def header=(header = {}) @header = { 'Content-Type' => 'application/json' }.merge(header) end # Set a basic authentication for all requisitions. # # @param [Hash] header the default header for requisitions. def basic_auth(account, password) @header.merge!({ 'Authorization' => "Basic #{["#{account}:#{password}"].pack('m').delete("\r\n")}" }) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
api-client-2.4.0 | lib/api-client/configuration.rb |