Module: Ketchup
- Defined in:
- lib/ketchup.rb
Overview
Ketchup Ruby API
Defined Under Namespace
Classes: API, AccessDenied, Item, ItemArray, Meeting, MeetingArray, Note, NoteArray, Profile, Project
Class Method Summary collapse
-
.authenticate(email, password) ⇒ Ketchup::Profile
Creates a new profile authenticated against the Ketchup API.
Class Method Details
.authenticate(email, password) ⇒ Ketchup::Profile
Creates a new profile authenticated against the Ketchup API. This is the recommended method to get access to an account’s meetings, notes and items.
23 24 25 |
# File 'lib/ketchup.rb', line 23 def self.authenticate(email, password) Ketchup::Profile.load(email, password) end |