Mercurial > rsstweet
view config/config_init.rb @ 55:8f68ca606099
Add twitter id to the url so it'll be consistent.
Not sure if there will be use case of "following this id".
author | nanaya <me@myconan.net> |
---|---|
date | Fri, 03 Jul 2015 01:17:40 +0900 |
parents | e5082c4c234d |
children | e9a6019a34ea |
line wrap: on
line source
CFG = { :twitter => { :consumer_key => ENV["RT_CONSUMER_KEY"], :consumer_secret => ENV["RT_CONSUMER_SECRET"], :access_token => ENV["RT_ACCESS_TOKEN"], :access_token_secret => ENV["RT_ACCESS_TOKEN_SECRET"] }, :memcached_servers => ENV["RT_MEMCACHED_SERVERS"].try(:split, ",") } config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__) require config_local if File.exist? config_local