Sha256: 5365965e52c5712164789c024dc46e79e8cd7452385959716bbd9f09fa18ec89

Contents?: true

Size: 289 Bytes

Versions: 29

Compression:

Stored size: 289 Bytes

Contents

module FbGraph
  class Picture
    include Comparison

    @@attributes = [:is_silhouette, :url, :height, :width]
    attr_accessor *@@attributes

    def initialize(attributes = {})
      @@attributes.each do |key|
        self.send :"#{key}=", attributes[key]
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
fb_graph-2.7.17 lib/fb_graph/picture.rb
fb_graph-2.7.16 lib/fb_graph/picture.rb
fb_graph-2.7.15 lib/fb_graph/picture.rb
fb_graph-2.7.14 lib/fb_graph/picture.rb
fb_graph-2.7.13 lib/fb_graph/picture.rb
fb_graph-2.7.12 lib/fb_graph/picture.rb
fb_graph-2.7.11 lib/fb_graph/picture.rb
fb_graph-2.7.10 lib/fb_graph/picture.rb
fb_graph-2.7.9 lib/fb_graph/picture.rb
fb_graph-2.7.8 lib/fb_graph/picture.rb
fb_graph-2.7.7 lib/fb_graph/picture.rb
fb_graph-2.7.6 lib/fb_graph/picture.rb
fb_graph-2.7.5 lib/fb_graph/picture.rb
fb_graph-2.7.4 lib/fb_graph/picture.rb
fb_graph-2.7.3 lib/fb_graph/picture.rb
fb_graph-2.7.2 lib/fb_graph/picture.rb
fb_graph-2.7.1 lib/fb_graph/picture.rb
fb_graph-2.7.0 lib/fb_graph/picture.rb
fb_graph-2.6.7 lib/fb_graph/picture.rb
fb_graph-2.6.6 lib/fb_graph/picture.rb