class Noip::Credentials

Attributes

host[R]
password[R]
username[R]

Public Class Methods

new(username, password, host) click to toggle source
# File lib/noip/credentials.rb, line 4
def initialize(username, password, host)
  @username = username
  @password = password
  @host     = host
end