Class: Calendav::Credentials::Apple

Inherits:
Standard
  • Object
show all
Defined in:
lib/calendav/credentials/apple.rb

Instance Attribute Summary

Attributes inherited from Standard

#authentication, #host, #password, #username

Instance Method Summary collapse

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