Mercurial > rsstweet
diff config/config_init.rb @ 47:e5082c4c234d
Also allow config-file-based configuration.
author | nanaya <me@myconan.net> |
---|---|
date | Thu, 23 Apr 2015 16:05:08 +0900 |
parents | |
children | e9a6019a34ea |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/config/config_init.rb Thu Apr 23 16:05:08 2015 +0900 @@ -0,0 +1,13 @@ +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