module Rubyflare

Constants

VERSION

Public Class Methods

connect_with(email, api_key) click to toggle source
# File lib/rubyflare.rb, line 17
def self.connect_with(email, api_key)
  Rubyflare::Connect.new(email: email, api_key: api_key)
end
connect_with_token(api_token) click to toggle source
# File lib/rubyflare.rb, line 21
def self.connect_with_token(api_token)
  Rubyflare::Connect.new(api_token: api_token)
end