public
Description: Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-level config/ directory.
Homepage:
Clone URL: git://github.com/jtrupiano/environmentalist.git
environmentalist / History.txt
100644 27 lines (17 sloc) 1.038 kb
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
=== v0.2.4
2009-04-30
 
* Fix error preventing nested geminstaller files from working properly. (thanks Nick Gauthier)
* Alter gem dependencies for geminstaller and rails in preinitializer.rb to reference actual releases
 
=== v0.2.3
2009-04-04
 
* Move loading of postboot.rb to the bottom of boot.rb. Addresses failures with rails 2.3.2
 
=== v0.2.1
2009-03-06
 
* Add automatic gem install + activation (bug fix for GemInstaller pending) added to preinitializer.rb
 
=== v0.2.0
2009-03-02
 
* Added preinitializer.rb to the set of the generated files for you. It auto-loads gem dependencies as specified in geminstaller.yml files that can be distributed across your environment directories.
* Moved gem onto jeweler (with the temporary loss of rubyforge support --- rubyforge integration has been achieved in a fork of the jeweler repo, so we should have it back once it's merged back into the main line.)
 
=== v0.1.0
2008-08-04
 
* Initial Release: environmentalize executable will make environments first-class citizens in your rails app!