Class: Calendav::Credentials::FastMail
- Defined in:
- lib/calendav/credentials/fastmail.rb
Instance Attribute Summary
Attributes inherited from Standard
#authentication, #host, #password, #username
Instance Method Summary collapse
-
#initialize(username:, password:) ⇒ FastMail
constructor
A new instance of FastMail.
Constructor Details
#initialize(username:, password:) ⇒ FastMail
Returns a new instance of FastMail.
11 12 13 14 15 16 17 |
# File 'lib/calendav/credentials/fastmail.rb', line 11 def initialize(username:, password:) super( host: "https://caldav.fastmail.com/dav/", username: username, password: password ) end |