Sha256: 71d2a08af06ccffdfd73520d1259c82eb6ef52e0bb79f558609704e3de4893a2

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

module Spidr
  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

1 entries across 1 versions & 1 rubygems

Version Path
spidr-0.2.2 lib/spidr/auth_credential.rb