Module: RedditKit::Creatable

Included in:
Comment, Link, Multireddit, PrivateMessage, Subreddit, User
Defined in:
lib/redditkit/creatable.rb

Overview

Methods which return the time of creation for objects.

Instance Method Summary collapse

Instance Method Details

#created_atTime

The time when the object was created on reddit.

Returns:

  • (Time)


11
12
13
14
# File 'lib/redditkit/creatable.rb', line 11

def created_at
  created = @attributes[:created_utc]
  @created_at ||= Time.at(created) if created
end