Class: Wuclan::Twitter::Model::TwitterUser
- Inherits:
-
Object
- Object
- Wuclan::Twitter::Model::TwitterUser
- Includes:
- ModelCommon, TwitterUserCommon
- Defined in:
- lib/wuclan/twitter/model/twitter_user.rb
Overview
Fundamental information on a user.
Instance Method Summary collapse
- #favorites_per_day ⇒ Object
- #followers_per_day ⇒ Object
-
#friends_per_day ⇒ Object
Rate info.
- #tweets_per_day ⇒ Object
Methods included from TwitterUserCommon
#decoded_description, #decoded_location, #decoded_name, #mutable_fields, #num_key_fields
Methods included from ModelCommon
#days_since_created, flatten_date, #key, #scrape_age, unbooleanize, zeropad_id
Instance Method Details
#favorites_per_day ⇒ Object
56 |
# File 'lib/wuclan/twitter/model/twitter_user.rb', line 56 def favorites_per_day() favorites_count.to_i / days_since_created end |
#followers_per_day ⇒ Object
55 |
# File 'lib/wuclan/twitter/model/twitter_user.rb', line 55 def followers_per_day() followers_count.to_i / days_since_created end |
#friends_per_day ⇒ Object
Rate info
54 |
# File 'lib/wuclan/twitter/model/twitter_user.rb', line 54 def friends_per_day() friends_count.to_i / days_since_created end |
#tweets_per_day ⇒ Object
57 |
# File 'lib/wuclan/twitter/model/twitter_user.rb', line 57 def tweets_per_day() tweets_count.to_i / days_since_created end |