Most of configuration files in ruby such as Gemfile, gemspec, are just ruby code itself. Why database configuration file in rails is the exception?
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
Personal theory is ruby code is scary to administrators, and the one configuration file they would often have to mess with is the database configuration. YAML is a bit more approachable. |
|||||
|
My guess: For configuration of a common module across environments it is the most concise way of doing so. To do it in Ruby adds more complexity to the file. You would have to ask the original designer though to get the real answer. |
|||
|
One bonus is that other languages can read YAML, while you can't read a ruby config file in Python (easily). That said I'd use ruby for complex config setups |
|||
|