tye / rubyception

Rubyception - Realtime Rails log in your browser
MIT License
156 stars 10 forks source link

GUI-less service applications need jquery, and cater for STDOUT loggers #11

Closed hlascelles closed 12 years ago

hlascelles commented 12 years ago

When included as an engine in a GUI less back end service, rubyception fails to display without jquery. This adds it explicitly.

Also, logging to stdout (syslog) means the autoflushing setting is not available, so should not be attempted.

tye commented 12 years ago

The autoflushing line has been removed in v0.1.1.

jquery is now being included in the assets/ directory rather than through a gem. I'm not sure I understand the problem you're having with jquery.

hlascelles commented 12 years ago

If you were to include this as an engine in a service that has no GUI, then jquery was not available, and the GUI needs it. You're including it will fix that now I suppose... cheers!

H