Class: FbGraph::Tag
- Inherits:
-
Object
- Object
- FbGraph::Tag
- Includes:
- Comparison, Serialization
- Defined in:
- lib/fb_graph/tag.rb
Instance Attribute Summary (collapse)
-
- (Object) created_time
Returns the value of attribute created_time.
-
- (Object) name
Returns the value of attribute name.
-
- (Object) user
Returns the value of attribute user.
-
- (Object) x
Returns the value of attribute x.
-
- (Object) y
Returns the value of attribute y.
Instance Method Summary (collapse)
-
- (Tag) initialize(attributes = {})
constructor
A new instance of Tag.
- - (Object) to_hash(options = {})
Methods included from Serialization
Methods included from Comparison
Constructor Details
- (Tag) initialize(attributes = {})
A new instance of Tag
8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/fb_graph/tag.rb', line 8 def initialize(attributes = {}) @x = attributes[:x] @y = attributes[:y] if attributes[:created_time] @created_time = Time.parse(attributes[:created_time]).utc end if attributes[:id].present? @user = User.new(attributes[:id], attributes) end @name = attributes[:name] end |
Instance Attribute Details
- (Object) created_time
Returns the value of attribute created_time
6 7 8 |
# File 'lib/fb_graph/tag.rb', line 6 def created_time @created_time end |
- (Object) name
Returns the value of attribute name
6 7 8 |
# File 'lib/fb_graph/tag.rb', line 6 def name @name end |
- (Object) user
Returns the value of attribute user
6 7 8 |
# File 'lib/fb_graph/tag.rb', line 6 def user @user end |
- (Object) x
Returns the value of attribute x
6 7 8 |
# File 'lib/fb_graph/tag.rb', line 6 def x @x end |
- (Object) y
Returns the value of attribute y
6 7 8 |
# File 'lib/fb_graph/tag.rb', line 6 def y @y end |
Instance Method Details
- (Object) to_hash(options = {})
20 21 22 23 24 25 26 27 28 |
# File 'lib/fb_graph/tag.rb', line 20 def to_hash( = {}) hash = { :tag_text => self.name, :x => self.x, :y => self.y } hash[:tag_uid] = self.user.identifier if self.user hash end |