view config/config_init.rb @ 129:9348882a4f35

Update gems
author nanaya <me@nanaya.pro>
date Sun, 01 Oct 2017 03:50:55 +0900
parents f76d44baa3dc
children 3fc882b0884d
line wrap: on
line source

$cfg = {
  :twitter0 => {
    :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"]
  },
  :redis_server => ENV["RT_REDIS_SERVER"]
}

config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__)

require config_local if File.exist? config_local

$cfg.freeze