Sha256: 3eb1f3175ffdf8dcf3ea2c4a4989cad6e28c0924ca9d9412c8198f23c2decdf0

Contents?: true

Size: 579 Bytes

Versions: 42

Compression:

Stored size: 579 Bytes

Contents

module FbGraph
  module Connections
    module Events
      def events(options = {})
        events = self.connection(:events, options)
        events.map! do |event|
          Event.new(event[:id], event.merge(
            :access_token => options[:access_token] || self.access_token
          ))
        end
      end

      def event!(options = {})
        event = post(options.merge(:connection => :events))
        Event.new(event[:id], options.merge(event).merge(
          :access_token => options[:access_token] || self.access_token
        ))
      end
    end
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
fb_graph-2.2.6 lib/fb_graph/connections/events.rb
fb_graph-2.2.5 lib/fb_graph/connections/events.rb
fb_graph-2.2.4 lib/fb_graph/connections/events.rb
fb_graph-2.2.3 lib/fb_graph/connections/events.rb
fb_graph-2.2.2 lib/fb_graph/connections/events.rb
fb_graph-2.2.1 lib/fb_graph/connections/events.rb
fb_graph-2.2.0 lib/fb_graph/connections/events.rb
fb_graph-2.2.0.beta lib/fb_graph/connections/events.rb
fb_graph-2.2.0.alpha2 lib/fb_graph/connections/events.rb
fb_graph-2.2.0.alpha lib/fb_graph/connections/events.rb
fb_graph-2.1.13 lib/fb_graph/connections/events.rb
fb_graph-2.1.12 lib/fb_graph/connections/events.rb
fb_graph-2.1.11 lib/fb_graph/connections/events.rb
fb_graph-2.1.10 lib/fb_graph/connections/events.rb
fb_graph-2.1.9 lib/fb_graph/connections/events.rb
fb_graph-2.1.8 lib/fb_graph/connections/events.rb
fb_graph-2.1.7 lib/fb_graph/connections/events.rb
fb_graph-2.1.6 lib/fb_graph/connections/events.rb
fb_graph-2.1.5 lib/fb_graph/connections/events.rb
fb_graph-2.1.4 lib/fb_graph/connections/events.rb