Sha256: 6cfb7cf8f2fd6bf440d6fe6f807bb68c66be135bd367096382fdf9840d4ef37e
Contents?: true
Size: 387 Bytes
Versions: 10
Compression:
Stored size: 387 Bytes
Contents
module FbGraph module Connections module Insights def insights(options = {}) options[:access_token] ||= self.access_token || get_access_token(options[:secret]) insights = self.connection(:insights, options) insights.map! do |insight| Insight.new(insight.merge(:access_token => options[:access_token])) end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems