Engines plugin failed to start under rails 2.1.1
Reported by giates | September 7th, 2008 @ 11:31 PM
I just update rails from 2.1.0 to 2.1.1 (gem install rails -v 2.1.1).
After that, Engines Plugin won't start anymore:
/home/tex/prj/terralink/if/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb:143: Dependencies is not a module (TypeError)
================================================
<<<<<<<<<<<<<<<<<<<< SOLVED <<<<<<<<<<<<<<<<<<<<
Simply modify line 143 of vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb
from: module ::Dependencies #:nodoc:
to: module ActiveSupport::Dependencies #:nodoc:
This because in Rails 2.1.1 the Dependencies module has moved into ActiveSupport.
Now it works but I don't know neither how to set the ticket status has solved nor how to notify the solved issue to project maintainers, anyone know how to do ?
Greetings...
Comments and changes to this ticket
-

giates September 10th, 2008 @ 09:55 PM
- → Assigned user changed from to Sven Fuchs
================================================
<<<<<<<<<<<<<<<<<<<< SOLVED <<<<<<<<<<<<<<<<<<<<
Simply modify line 143 of vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb
from: module ::Dependencies #:nodoc:
to: module ActiveSupport::Dependencies #:nodoc:
This because in Rails 2.1.1 the Dependencies module has moved into ActiveSupport.
Now it works but I don't know neither how to set the ticket status has solved nor how to notify the solved issue to project maintainers, anyone know how to do ?
Greetings...
-
James Adam September 13th, 2008 @ 02:23 AM
- → State changed from new to resolved
- → Assigned user changed from Sven Fuchs to James Adam
Thanks for reporting this - I've committed the simple fix (http://github.com/lazyatom/engin...
-
James Adam September 13th, 2008 @ 02:24 AM
FYI, the best way to supply fixes is via github pull requests, along with reporting the problem on this site :)
Please Login or create a free account to add a new comment.
You can update this ticket by sending an email to from your email client. (help)
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
The rails engines plugin itself
