public
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack.git
Click here to lend your support to: mack and make a donation at www.pledgie.com !
Mack::Utils::Registry is now Mack::Utils::RegistryList [#55 state:resolved]
dsutedja (author)
Sun Jul 27 08:42:25 -0700 2008
commit  42b7b6794c7eac180e0c19252cec5c074702a2e0
tree    38d2ec0b354a307e75aab7acdc7fa01ad6aeccf0
parent  4dbec349666c3c137198bbf4f20955724399d250
...
29
30
31
 
32
33
34
...
29
30
31
32
33
34
35
0
@@ -29,6 +29,7 @@
0
 * [#50] Mack will now have 2 environment files: mack_core and mack_app.  Mack.rb will load both files, but it gives other module a chance to load just the core files and not the application's files.
0
 * [#51] Application generator should generate orm support in the right place
0
 * [#52] mack-more: mack-[orm] should require mack-[orm].rb using its full path.
0
+* [#55] mack-more: mack-facets: Mack::Utils::Registry is now Mack::Utils::RegistryList
0
 * gem: application_configuration 1.5.1
0
 * gem: ruby-debug 0.10.0
0
 * gem: data_mapper 0.9.3
...
370
371
372
373
 
374
375
376
...
370
371
372
 
373
374
375
376
0
@@ -370,7 +370,7 @@ module Mack
0
     end
0
     
0
     # Houses a repository of all the controllers in the system.
0
-    class Registry < Mack::Utils::Registry
0
+    class Registry < Mack::Utils::RegistryList
0
     end
0
     
0
   end # Controller
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ require File.join(File.dirname(__FILE__), "request_logger")
0
 require File.join(File.dirname(__FILE__), "session")
0
 module Mack
0
   module RunnerHelpers
0
-    class Registry < Mack::Utils::Registry
0
+    class Registry < Mack::Utils::RegistryList
0
       
0
       def initial_state
0
         [Mack::RunnerHelpers::RequestLogger, Mack::RunnerHelpers::Session]
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Mack
0
   module Utils
0
     
0
     # Houses a registry of Rack runners that should be called before the Mack::Runner.
0
-    class RunnersRegistry < Mack::Utils::Registry
0
+    class RunnersRegistry < Mack::Utils::RegistryList
0
     end
0
     
0
     module Server

Comments