Sha256: 0ce95605fa82b472ca8e05bbbf0f750c5096915c44f47c672fb0e6da32fe52a4

Contents?: true

Size: 1.19 KB

Versions: 11

Compression:

Stored size: 1.19 KB

Contents

module FbGraph
  class Page < Node
    include Connections::Admins
    include Connections::Albums
    include Connections::Blocked
    include Connections::Checkins
    include Connections::Conversations
    include Connections::Events
    include Connections::Feed
    include Connections::Groups
    include Connections::Insights
    include Connections::Likes
    include Connections::Links
    include Connections::Milestones
    include Connections::Notes
    include Connections::Photos
    include Connections::Picture
    include Connections::Posts
    include Connections::Questions
    include Connections::Settings
    include Connections::Statuses
    include Connections::Tabs
    include Connections::Tagged
    include Connections::Videos
    extend Searchable

    attr_accessor :name, :username, :category, :like_count, :talking_about_count, :perms

    def initialize(identifier, attributes = {})
      super
      [:name, :username, :category, :talking_about_count].each do |key|
        self.send :"#{key}=", attributes[key]
      end
      @like_count = attributes[:likes] || attributes[:fan_count]
      @perms = attributes[:perms]
    end
  end
end

require 'fb_graph/page/category_attributes'

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fb_graph-2.5.7 lib/fb_graph/page.rb
fb_graph-2.5.6 lib/fb_graph/page.rb
fb_graph-2.5.5 lib/fb_graph/page.rb
fb_graph-2.5.4 lib/fb_graph/page.rb
fb_graph-2.5.3 lib/fb_graph/page.rb
fb_graph-2.5.2 lib/fb_graph/page.rb
fb_graph-2.5.1 lib/fb_graph/page.rb
fb_graph-2.5.0 lib/fb_graph/page.rb
fb_graph-2.4.20 lib/fb_graph/page.rb
fb_graph-2.4.19 lib/fb_graph/page.rb
fb_graph-2.4.18 lib/fb_graph/page.rb