[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-15 Thread farukhdm
Hi, FYI... With config.assets.compile = false(live compilation disabled) I removed entry from manifest.yml file and I got: ActionView::Template::Error (jquery.bxslider.min.js isn't precompiled) which I guess it valid error message. Had there been, config.assets.compile = true + missing

[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-14 Thread farukhdm
Hey, Thanks for enlightenment :) I shall perform some ups and downs. Will let you know, if I get any new insight On Saturday, 13 July 2013 01:15:01 UTC+5:30, mike wrote: On Friday, July 12, 2013 2:07:55 AM UTC-4, farukhdm wrote: Following are the configurations in my production.rb file:

[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-12 Thread farukhdm
Following are the configurations in my production.rb file: # Disable live compilation of assets(Don't fallback to assets pipeline if a precompiled asset is missed) config.assets.compile = false # Assets pre-compilation task(rake assets:precompile) configurations

[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-12 Thread mike
On Friday, July 12, 2013 2:07:55 AM UTC-4, farukhdm wrote: Following are the configurations in my production.rb file: # Disable live compilation of assets(Don't fallback to assets pipeline if a precompiled asset is missed) config.assets.compile = false # Assets pre-compilation

[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-11 Thread mike
On Thursday, July 11, 2013 7:24:34 AM UTC-4, farukhdm wrote: Hi, I am stuck in a weird situation where in my production environment, an asset is being attempted to compress while rendering a view. I've all my assets put into public/assets folder via rake assets:precompile

[Rails] Re: Asset Pipeline: Asset attempted to compress while creating page response not during asset request

2013-07-11 Thread farukhdm
Thanks for the update. jquery.bxslider.min.js in my case is not part of application.js I have added jquery.bxslider.min.js to pre-compile path also, so that it can be loaded independently. Its available in public/assets folder too. You said I'm not surprised it is re-compiling the source code