module Eventioz

A Ruby client library for the Eventioz platform. See github.com/marloncarvalho/eventioz for a general introduction.

Constants

BASE_URL
VERSION

Public Class Methods

login(params = {}) click to toggle source
# File lib/eventioz.rb, line 19
def login(params = {})
  map = Eventioz::Auth.authorize(params)
  Eventioz::Account.new(:email => map['account']['email'], :api_key => map['account']['api_key'])
end