comparison config/config_init.rb @ 260:e2150dce4e90

Rubocop (rails) time
author nanaya <me@nanaya.net>
date Sun, 15 Dec 2024 22:59:09 +0900
parents 3fc882b0884d
children 2fc76c51e184
comparison
equal deleted inserted replaced
259:8b75d00c77ba 260:e2150dce4e90
1 $cfg = { 1 $cfg = {
2 :twitter => [ 2 twitter: [
3 { 3 {
4 :consumer_key => ENV["RT_CONSUMER_KEY"], 4 consumer_key: ENV["RT_CONSUMER_KEY"],
5 :consumer_secret => ENV["RT_CONSUMER_SECRET"], 5 consumer_secret: ENV["RT_CONSUMER_SECRET"],
6 :access_token => ENV["RT_ACCESS_TOKEN"], 6 access_token: ENV["RT_ACCESS_TOKEN"],
7 :access_token_secret => ENV["RT_ACCESS_TOKEN_SECRET"], 7 access_token_secret: ENV["RT_ACCESS_TOKEN_SECRET"]
8 }, 8 }
9 ], 9 ],
10 :redis_server => ENV["RT_REDIS_SERVER"] 10 redis_server: ENV["RT_REDIS_SERVER"]
11 } 11 }
12 12
13 config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__) 13 config_local = File.expand_path("../config_local_#{Rails.env}.rb", __FILE__)
14 14
15 require config_local if File.exist? config_local 15 require config_local if File.exist? config_local