]> git.openstreetmap.org Git - rails.git/blob - config/preinitializer.rb
Convert OpenID authentication to use OmniAuth
[rails.git] / config / preinitializer.rb
1 require "yaml"
2
3 if defined?(Rake.application) && Rake.application.top_level_tasks.grep(/^(default$|test(:|$))/).any?
4   env = "test"
5 else
6   env = ENV["RAILS_ENV"] || "development"
7 end
8
9 config = YAML.load_file(File.expand_path(env == "test" ? "../example.application.yml" : "../application.yml", __FILE__))
10
11 ENV.each do |key, value|
12   if key.match(/^OSM_(.*)$/)
13     Object.const_set(Regexp.last_match(1).upcase, value)
14   end
15 end
16
17 config[env].each do |key, value|
18   Object.const_set(key.upcase, value) unless Object.const_defined?(key.upcase)
19 end