GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Add helpers directory to load path
Sat Jun 28 03:03:24 -0700 2008
commit  2ca81c5a87052bd2b5321551ffa4107b6f0a4687
tree    1f29c6067d481ab04aeccfe90b01f4602ff81cee
parent  20b13c1d846cd755222486694b42a00cb07725c9
...
331
332
333
334
 
335
336
337
 
338
339
340
...
331
332
333
 
334
335
336
337
338
339
340
341
0
@@ -331,10 +331,11 @@ class Merb::BootLoader::LoadClasses < Merb::BootLoader
0
 
0
     # Load all classes from Merb's native load paths.
0
     def run
0
- # Add models, controllers, and lib to the load path
0
+ # Add models, controllers, helpers and lib to the load path
0
       $LOAD_PATH.unshift Merb.dir_for(:model)
0
       $LOAD_PATH.unshift Merb.dir_for(:controller)
0
       $LOAD_PATH.unshift Merb.dir_for(:lib)
0
+ $LOAD_PATH.unshift Merb.dir_for(:helper)
0
 
0
       # Load application file if it exists - for flat applications
0
       load_file Merb.dir_for(:application) if File.file?(Merb.dir_for(:application))

Comments

    No one has commented yet.