Sha256: b44ec2f54aace5cf46398d2746f14681d694034e6eacdc7d8e45319bbcd082b3
Contents?: true
Size: 534 Bytes
Versions: 17
Compression:
Stored size: 534 Bytes
Contents
module Spidr # # Represents HTTP Authentication credentials for a website. # class AuthCredential # The username attr_reader :username # The password attr_reader :password # # Creates a new credential used for authentication. # # @param [String] username # The username for the credential. # # @param [String] password # The password for the credential. # def initialize(username,password) @username = username @password = password end end end
Version data entries
17 entries across 17 versions & 3 rubygems