Sha256: 3d09722aaaaf87b7dad494c0100a9c7ea335635d75bc2de700d540cd09f7dc9f
Contents?: true
Size: 326 Bytes
Versions: 5
Compression:
Stored size: 326 Bytes
Contents
module FbGraph class Tag include FbGraph::Comparison attr_accessor :user, :x, :y, :created_time def initialize(identifier, options = {}) @x = options.delete(:x) @y = options.delete(:y) @created_time = options.delete(:created_time) @user = User.new(identifier, options) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
fb_graph-0.0.7 | lib/fb_graph/tag.rb |
fb_graph-0.0.6 | lib/fb_graph/tag.rb |
fb_graph-0.0.5 | lib/fb_graph/tag.rb |
fb_graph-0.0.4 | lib/fb_graph/tag.rb |
fb_graph-0.0.3 | lib/fb_graph/tag.rb |