module Plaid
Public Class Methods
client(user, email, password, institution, access_token=nil)
click to toggle source
client for initializing access through Plaid
# File lib/plaid.rb, line 9 def client(user, email, password, institution, access_token=nil) Plaid::Client::Base.new(user, email, password, institution, access_token) end
configure(&block)
click to toggle source
# File lib/plaid.rb, line 3 def configure(&block) Plaid::Client::Base.configure(&block) Plaid::Client::ThinClient.configure(&block) end
scaffold()
click to toggle source
scaffolding are general purpose tools for dealing with Plaid
# File lib/plaid.rb, line 19 def scaffold Plaid::Scaffold::Base end
thin_client(e_mail, institution, access_token)
click to toggle source
a special thin client for accessing Plaid
without credentials securely
# File lib/plaid.rb, line 14 def thin_client(e_mail, institution, access_token) Plaid::Client::ThinClient.new(e_mail, institution, access_token) end