Sha256: 4e1d501a28d8f203b309c8f64d9628d237b0f8608e0d87501bc0a53c1019bf03
Contents?: true
Size: 472 Bytes
Versions: 36
Compression:
Stored size: 472 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
36 entries across 36 versions & 1 rubygems