Mercurial > rsstweet
comparison config/config_init.rb @ 110:f76d44baa3dc
Test adding redis support
author | nanaya <me@myconan.net> |
---|---|
date | Wed, 09 Nov 2016 07:35:03 +0900 |
parents | 0c023d35cd80 |
children | 3fc882b0884d |
comparison
equal
deleted
inserted
replaced
109:e74c23d5c42e | 110:f76d44baa3dc |
---|---|
3 :consumer_key => ENV["RT_CONSUMER_KEY"], | 3 :consumer_key => ENV["RT_CONSUMER_KEY"], |
4 :consumer_secret => ENV["RT_CONSUMER_SECRET"], | 4 :consumer_secret => ENV["RT_CONSUMER_SECRET"], |
5 :access_token => ENV["RT_ACCESS_TOKEN"], | 5 :access_token => ENV["RT_ACCESS_TOKEN"], |
6 :access_token_secret => ENV["RT_ACCESS_TOKEN_SECRET"] | 6 :access_token_secret => ENV["RT_ACCESS_TOKEN_SECRET"] |
7 }, | 7 }, |
8 :memcached_servers => ENV["RT_MEMCACHED_SERVERS"].try(:split, ",") | 8 :redis_server => ENV["RT_REDIS_SERVER"] |
9 } | 9 } |
10 | 10 |
11 config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__) | 11 config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__) |
12 | 12 |
13 require config_local if File.exist? config_local | 13 require config_local if File.exist? config_local |