davidw / noVNCgem

noVNC for your Rails application
Other
5 stars 3 forks source link

assets precompiling fails #2

Closed luxflux closed 9 years ago

luxflux commented 12 years ago

Hi

if you just add

//= require vnc

in application.js, there will be errors when using it in production as the files are not precompiled. You need to add them one by one:

//= require webutil
//= require base64
//= require websock
//= require des
//= require input
//= require display
//= require rfb
//= require jsunzip

I think it would be easier if the gem would provide a "loader-file" which you can include.

Also a prefix like noVNC/ would be cool then.

This would also fix the INCLUDE_DIR problem, mentioned in #1.

davidw commented 12 years ago

Good point - is that something you could do?