Mercurial > rsstweet
view config/config_init.rb @ 65:eecb35eac2f3
Replace `\n` with newlines
Replicates what the actual client do. Of course comes with possible trollings.
| author | nanaya <me@myconan.net> | 
|---|---|
| date | Tue, 01 Dec 2015 01:27:22 +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
