===0.4.2.1
* Fixed bug with gems:list rake task that was looking in the wrong path for the gems.rb file.
===0.4.2
* Added config/initializers directory. All files in this directory will be required at start up time.
* Gems can now be required simply using the initializers/gems.rb file and the require_gems method.
* Added gems:list and gems:install rake tasks. The gems:list task will list any gems being required for the application. The gems:install task will install all the gems being required for the application.
* Filters in controllers can now be inherited from parent controller classes.
* gem: mack_ruby_core_extensions 0.1.5
* gem: thing 0.7.1
===0.4.1
* Improved testing support.
* Added assigns support to testing. This is allows for pulling instance variables that were set in a controller to tests.
* Added ability to do 'session' based tests.
* Added assert_difference method.
* Added ability to set/remove cookies before requests are made.
* gem: mack_ruby_core_extensions 0.1.4
===0.4.0.1
* gem: cachetastic 1.4.2
===0.4.0
* Added Distributed Routes!
* gem: mack_ruby_core_extensions 0.1.3
* removed gem: ruby_extensions
===0.3.0
* Ticket: #8 Xml Builder Support
* Ticket: #7 Ability to drive certain content based on 'format'
* Ticket: #9 Added a global encryption system to make encrypting/decrypting of strings easy to use.
* gem: builder 2.1.2
* gem: crypt 1.1.4
===0.2.0.1
* gem: cachetastic 1.4.1
* gem: application_configuration 1.2.1
===0.2.0
* ticket: 3 Render url in Controllers/Views
* ticket: 5 Render Extension System.
===0.1.0
* Added an inflections system. The default inflections are from Jeremy McAnally's great Rails plugin, acts_as_good_speeler. Thanks Jeremy! http://www.jeremymcanally.com/
* Added a to_params method to Hash to help with testing.
* Added rake generate:scaffold task.
===0.0.7.0
* Fixed [#18488] Recommend moving files under lib/
===0.0.6.2
* gem: thin 0.7.0
* gem: cachetastic 1.3.1
* Fixed 18487: #convert_security_of_methods ignores new_level param
===0.0.6
* rake generate:<generator_name>
* rake generate:plugin - will generate the stub of a plugin in the vendor/plugins directory.
* rake dump:config - prints out the configuration information for the specified environment.
* redirect_to now takes an optional Hash as a second parameter, instead of a fixnum.
* redirect_to will now do server side redirects if passed :server_side => true as part of the optional second argument Hash.
* plugin in support. plugins get loaded before the 'app' directory. each plugins 'lib' directory is added to the global load path and then each plugins 'init.rb' file is called, which is responsible for loading the necessary files. The 'lib' directories are finally removed from the global load path.
* renamed initialize directory to initialization. moved logging, orm_support, and plugins to a subfolder called initializers.
===0.0.4
* gem: rack 0.3.0
* gem: ruby_extensions 1.0.11