-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
37 lines (26 loc) · 1.5 KB
/
README
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
35
36
37
AppConfig plugin by Eugene Bolshakov, [email protected], http://www.taknado.com
The plugin is based on the idea described here:
http://kpumuk.info/ruby-on-rails/flexible-application-configuration-in-ruby-on-rails/lang-pref/en/
It allows to have a file (config/config.yml) with application configuration parameters.
It should have a "common" section with all parameters along with default values and can also
contain a section for each of the rails environments (development, test, production, or
your custom one). The values from the current environment section will override the values in the
"common" section.
If some developer needs his own specific values for his working copy, he can simply create
a config/config.local.yml file and override any value there, again having a "common" section
and a section for each environment.
Nothing is mandatory (files, sections) � you just have what you really need. The files are parsed with ERB,
so they can contain some Ruby
An example of a config file:
common:
admin_email: [email protected]
xml_rpc_url: http://domain.com:8000/
media_path: <%= RAILS_ROOT %>/tmp/media
development:
xml_rpc_url: http://localhost:8000/
test:
xml_rpc_url: http://localhost:8008/
Then, in the application you can use the config parameters like this:
Conf.xml_rpc_url
So it means that you�ve got a Config object which holds all the configuration parameters defined.
It doesn�t allow to change the values in the application code, BTW.