Method: CloudApp.authenticate

Defined in:
lib/cloudapp_api.rb

.authenticate(email, password) ⇒ Hash

Sets the authentication credentials in a class variable

Parameters:

  • email (String)

    cl.ly username

  • password (String)

    cl.ly password

Returns:

  • (Hash)

    authentication credentials



22
23
24
# File 'lib/cloudapp_api.rb', line 22

def CloudApp.authenticate(email, password)
  Base.authenticate(email, password)
end