One thing I did was to add
+ Dependencies.load_once_paths.delete(File.dirname(__FILE__) + '/lib')
to vendor/plugins/comatose/init.rb and I commented out the following lines in
vendor/plugins/comatose/lib/comatose.rb
- load "#{base}/comatose/admin_controller.rb"
- load "#{base}/comatose/admin_helper.rb"
- load "#{base}/comatose/controller.rb"
This was really hacky and dirty and worked sort of ... if you are
patching files in the plugin it can be very frustrating since you have
to restart the server in dev mode for the changes to take affect ...
so this comes at a cost ;)
Hope this gets you on the right track.
Baldur
I was having trouble getting my comatose pages to make use of methods
I had in a lib file. I know there's a configuration option to
including helpers and includes and that works fine for my admin
section but for some reason it doesn't work with the public pages.