public
Rubygem
Description: A lightweight and flexible website management system.
Homepage: http://webby.rubyforge.org/
Clone URL: git://github.com/TwP/webby.git
Search Repo:
better post_load from Mr Bones
TwP (author)
Fri Feb 01 10:24:14 -0800 2008
commit  a8ac10c5003675d352fbd9b8e230d4898f0d7f4c
tree    60a9ea3877b042f55f2eacaa4235725e79dcf367
parent  1f4a971f2b9d8f092cd7b6f4b88229a7b7d66e98
...
68
69
70
71
 
 
 
72
73
74
...
68
69
70
 
71
72
73
74
75
76
0
@@ -68,7 +68,9 @@ PROJ.svn_tags = 'tags'
0
 PROJ.svn_branches = 'branches'
0
 
0
 # Load the other rake files in the tasks folder
0
-Dir.glob('tasks/*.rake').sort.each {|fn| import fn}
0
+rakefiles = Dir.glob('tasks/*.rake').sort
0
+rakefiles.unshift(rakefiles.delete('tasks/post_load.rake')).compact!
0
+import(*rakefiles)
0
 
0
 # Setup some constants
0
 WIN32 = %r/win32/ =~ RUBY_PLATFORM unless defined? WIN32

Comments

    No one has commented yet.