Sha256: 405b3959eda91ea524ea1cb1e165690bc0ea97e97097e26cb4352082405486f4
Contents?: true
Size: 517 Bytes
Versions: 19
Compression:
Stored size: 517 Bytes
Contents
module ApipieBindings # AbstractCredentials class can hold your logic to get # users credentials. It defines interface that can be used # by ApipieBindings when the credentials are needed to create connection class AbstractCredentials # Convert credentials to hash usable for merging to RestClient configuration # @return [Hash] def to_params {} end # Check that credentials storage is empty def empty? end # Clear credentials storage def clear end end end
Version data entries
19 entries across 19 versions & 1 rubygems