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