public
Fork of markbates/mack
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/juretta/mack.git
Search Repo:
markbates (author)
Wed Apr 02 10:40:35 -0700 2008
commit  e3adf0dbeaf13d8262de77fc91a0fb3458a0b085
tree    ebc22911dd6993258bdf96b3142f499d20bd339e
parent  49227d9242910362140937683d1a46d7c14c8293 parent  a8be6adae7f5c0fd3850630ffad5204049898cf3
mack / CHANGELOG
100644 65 lines (53 sloc) 2.838 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
===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