On Nov 27, 2007 12:20 AM, Michael Koziarski <[EMAIL PROTECTED]> wrote: > They *should* be loaded alphabetically. That's what makes the awesome > aaaaaaaaaa_first_thing so cool. It looks like it's trying to insert > correctly, what's going wrong?
This line: $LOAD_PATH.insert(application_lib_index + 1, lib_path) ...always inserts the current plugin's path immediately after the application lib entry. Since the plugins are processed alphabetically, this results in them being in reverse order on the final load path. -- Chad --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
