Sha256: 2f150238e08df536de607801e10f3dbf36afcd38338bb99cc865c0af57fc80d7
Contents?: true
Size: 505 Bytes
Versions: 95
Compression:
Stored size: 505 Bytes
Contents
module FbGraph class Doc < Node attr_accessor :from, :subject, :icon, :updated_time, :revision def initialize(identifier, attributes = {}) super @from = if attributes[:from] User.new(attributes[:from][:id], attributes[:from]) end @subject = attributes[:subject] @icon = attributes[:icon] @revision = attributes[:revision] @updated_time = if attributes[:updated_time] Time.parse(attributes[:updated_time]).utc end end end end
Version data entries
95 entries across 95 versions & 1 rubygems