Sha256: 1a995eeff5705bb4a329848c0caec0d1612bc66ffb49a6a9577c8e703e4c2fcc
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
module ApiClient # ApiClient::Configuration provides a way to configure ApiClient globally. class Configuration attr_accessor :mock, :hydra 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] paths 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', 'Accept' => 'application/json' }.merge(header) end # Set a basic authentication for all requisitions. # # @param [String] account the user for requisitions. # @param [String] password the password 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-3.1.0 | lib/api-client/configuration.rb |