Rodrigo Rosenfeld Rosas
Rodrigo Rosenfeld Rosas
This is indeed weird because Chef will populate node in this case with this: https://github.com/rosenfeld/gitorious-cookbooks/blob/master/apache2/attributes/default.rb I won't have time to test the recipe today but I'll try to give it...
Indeed I can confirm the problem in a new box. Unfortunately it seems something has changed in Chef since I created this recipe but I can't find an easy solution...
My test suite is affected by this as well.
Hi @rafaelfranca, I'm not sure teaspoon is using your suggestion as I can't find any references to `precompiled_asset_checker` in its source code. The strategy we use for testing (Konacha, Teaspoon,...
Also, how do I know when the `precompiled_asset_checker` already exists? Should I write an initializer? If so, what should I pass to the `after` option? Or should I use something...
I could get it to initialize like this: ``` ruby Rails.application.config.after_initialize do ActiveSupport.on_load(:action_view) do default_checker = ActionView::Base.precompiled_asset_checker ActionView::Base.precompiled_asset_checker = -> logical_path do default_checker[logical_path] || @tests end end end ``` But...
The only solution I could come up with is by using Thread.current[:skip_precompiled_check] in an `around_action` block and in the new checker... But all of this seems like the wrong way...
This is how I fixed rails-sandbox-assets for the time being: https://github.com/rosenfeld/rails-sandbox-assets/commit/1d2b5c2fa06dab11eb96357648cbad39ad5c5586
Thanks, @alexkravets. I'm in the process of moving our resources build system from sprockets to webpack due to several reasons, like support for source-maps, ES6 (Babel), code splitting, ability to...
Sending streaming responses with `Cache-Control: no-cache` will break on IE8 for HTTPS requests: http://support.microsoft.com/kb/323308