public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/methodmissing/rails.git
Eager load views after plugin and gem init to account for custom template 
handlers ( as either a gem or plugin ), which usually registers themselves with 
ActionView::Template.register_template_handler following the klass 
def.Otherwise, non-standard extensions render via ERB.
methodmissing (author)
Wed Jul 16 16:11:32 -0700 2008
commit  b902f638cd3dbcd1078024134c1da6aca5378789
tree    54cb8f3b17a67941932c50535ddbc7116d761f57
parent  4c65556f6c4a0e7f2f341a127986c994a5d8b248
...
13
14
15
 
16
...
13
14
15
16
17
0
@@ -13,3 +13,4 @@ actionmailer/pkg
0
 activesupport/pkg
0
 railties/pkg
0
 *.rbc
0
+.svn
0
\ No newline at end of file
...
142
143
144
145
146
147
148
149
150
151
 
 
152
153
154
...
142
143
144
 
145
146
147
148
149
150
151
152
153
154
155
0
@@ -142,13 +142,14 @@ module Rails
0
       initialize_temporary_session_directory
0
       initialize_time_zone
0
       initialize_framework_settings
0
-      initialize_framework_views
0
 
0
       add_support_load_paths
0
 
0
       load_gems
0
       load_plugins
0
 
0
+      initialize_framework_views
0
+
0
       # pick up any gems that plugins depend on
0
       add_gem_load_paths
0
       load_gems

Comments