In revision 5720, NZKoz checked in some stuff that is supposed to use
config.plugins for loading plugin s in the right order. I think he
intended it to keep working the way it is if config.plugins is not set,
but at least for me, no plugins are being loaded at all with this
change.

I was able to fix it temporarily by doing this (sorry if the patch file
is kinda screwy, I don't do this very often):

Index: railties/lib/initializer.rb
===================================================================
--- railties/lib/initializer.rb (revision 5721)
+++ railties/lib/initializer.rb (working copy)
@@ -605,6 +605,8 @@
           lib
           vendor
         ).map { |dir| "#{root_path}/#{dir}" }.select { |dir|
File.directory?(dir) }
+
+        paths.concat Dir["#{root_path}/vendor/plugins/*/lib/"]

         paths.concat builtin_directories
       end

If somebody could fix this properly, that would be great.

Thanks,
Martin


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Ruby on Rails: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to