in vendor/plugings/ruote_plugin/init.rb
in

 h[:logger] = Logger.new("log/ruote_#{RAILS_ENV}.log", 10, 1024000)

this line, it should be
 h[:logger] = Logger.new("#{RAILS_ROOT}/log/ruote_#{RAILS_ENV}.log",
10, 1024000)

because you can't assume that you always in rails directory. Some of
the applications don't make this assumption.

the same as this line

 h[:work_directory] ||= "work_#{RAILS_ENV}"

it should be

h[:work_directory] ||= "#{RAILS_ROOT}/work_#{RAILS_ENV}"


If you are using active_messaging which should start a new server, you
can encount this problem.
--~--~---------~--~----~------------~-------~--~----~
you received this message because you are subscribed to the "ruote users" group.
to post : send email to [email protected]
to unsubscribe : send email to [email protected]
more options : http://groups.google.com/group/openwferu-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to