Sha256: b91f9ebc974c93dcc317763492424c9a004e4e75cede2db29022a5ade1f35d12
Contents?: true
Size: 469 Bytes
Versions: 20
Compression:
Stored size: 469 Bytes
Contents
module FbGraph module Connections module Accounts def accounts(options = {}) accounts = self.connection :accounts, options accounts.map! do |account| account[:access_token] ||= options[:access_token] || self.access_token case self when User Page.new account[:id], account when Application TestUser.new account[:id], account end end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems