10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/cxf/controllers/concerns/read_config_file.rb', line 10
def set_config_variables
if File.exists?("#{Rails.root}/cxf_config.yml.erb")
template = ERB.new File.new("#{Rails.root}/cxf_config.yml.erb").read
config = YAML.safe_load template.result(binding)
@host = config.dig('cxf', 'host')
@api_key = config.dig('cxf', 'api_key')
@debug = !!config.dig('cxf', 'debug')
@redis_config = config.dig('cxf', 'redis_cache')
@use_cache = config.dig('cxf', 'redis_cache', 'use_cache')
if @use_cache
@redis_server = Redis.new(
host: config.dig('cxf', 'redis_cache', 'redis_host'),
port: config.dig('cxf', 'redis_cache', 'redis_port') || 6379,
db: config.dig('cxf', 'redis_cache', 'redis_db') || 1
)
end
end
end
|