-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.rb
34 lines (25 loc) · 912 Bytes
/
config.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Environment specific stuff (URL's etc).
require 'config/environment'
# Sensitive stuff (passwords etc).
require 'config/sensitive'
module OSMonitor
@@config = {}
def self.config
@@config
end
@@config['admin_report'] = {}
@@config['admin_report']['find_relation_sql_where_clause'] = {}
@@config['cycleway_report'] = {}
@@config['cycleway_report']['find_relation_sql_where_clause'] = {}
@@config['cycleway_report']['find_ways_sql_where_clause'] = {}
@@config['cycleway_report']['road_type_ref_tag'] = {}
@@config['cycleway_report']['road_type_network_tag'] = {}
@@config['road_report'] = {}
@@config['road_report']['find_relation_sql_where_clause'] = {}
@@config['road_report']['find_ways_sql_where_clause'] = {}
@@config['road_report']['road_type_ref_tag'] = {}
@@config['road_report']['road_type_network_tag'] = {}
end
require 'config/czech_republic'
require 'config/poland'
require 'config/serbia'