Mercurial > rsstweet
annotate app/models/tweet.rb @ 47:e5082c4c234d
Also allow config-file-based configuration.
author | nanaya <me@myconan.net> |
---|---|
date | Thu, 23 Apr 2015 16:05:08 +0900 |
parents | 205c0b5d9f44 |
children | 8983c426e256 |
rev | line source |
---|---|
15 | 1 class Tweet |
2 def timeline | |
28 | 3 @timeline ||= |
30
205c0b5d9f44
Whoops, expires_in accidentally as key name.
edogawaconan <me@myconan.net>
parents:
28
diff
changeset
|
4 Rails.cache.fetch({ :timeline => @twitter_id }, :expires_in => 5.minutes) do |
28 | 5 @client.user_timeline(@twitter_id) |
6 end | |
15 | 7 end |
8 | |
9 def initialize(twitter_id) | |
10 @client = Twitter::REST::Client.new do |config| | |
47
e5082c4c234d
Also allow config-file-based configuration.
nanaya <me@myconan.net>
parents:
30
diff
changeset
|
11 CFG[:twitter].each do |cfg_key, cfg_value| |
21 | 12 config.public_send("#{cfg_key}=", cfg_value) |
13 end | |
14 end | |
15 | 15 @twitter_id = twitter_id |
16 end | |
17 end |