module Twitter::Creatable
Public Instance Methods
created?()
click to toggle source
@return [Boolean]
# File lib/twitter/creatable.rb, line 17 def created? !!@attrs[:created_at] end
created_at()
click to toggle source
Time when the object was created on Twitter
@return [Time]
# File lib/twitter/creatable.rb, line 11 def created_at Time.parse(@attrs[:created_at]) unless @attrs[:created_at].nil? end