4
votes
Which Build-/Configuration Management Tool?
If you're comfortable with Ruby at all, use Rake.
Rake is by far the simplest build tool I've had the joy to use. It's a domain-specific-language build on top of ruby, basically ruby with …
8
votes
Application configuration files
YAML, for the simple reason that it makes for very readable configuration files compared to XML.
XML:
<user id="babooey" on="cpu1">
<firstname>Bob</firstn …
