Scott Carleton

Results 36 comments of Scott Carleton

It looks like travis is trying to clear the cache from disk. Can't duplicate locally.

Here's a way around it in your controller: ``` ruby caches_action :show, cache_path: :show_cache_path.to_proc after_filter :cache_tags def show_cache_path params end def cache_tags fragment = fragment_cache_key(show_cache_path) tag = ["post_#{params[:id]}"] Cashier.adapter.store_fragment_in_tag(fragment, tag)...

I'm using Rails 3.2.9. I looked over action controller quite a bit yesterday, it's being removed from rails core as you probably know, so that doesn't feel like the best...

@namxam although I have no intention of maintaining a fork, I believe I fixed this in my fork if you'd like to use it: https://github.com/scotterc/cashier/tree/tag-cached-pages

+1 here too. Thanks @assembler for the code

Probably won't have the time but here's the questions that would pop up - What's the purpose of the CHAR(256)? if the column is a text field is it necessary?...

Hey @mehulkar can you add your paperclip, delayed_paperclip and rails version please?

Hey @mehulkar I'm not exactly sure why your setting these before/post processed call backs. Was there an issue with the processing column that you were trying to fix? If so,...

hey @cgunther this is really useful! Would you mind taking a look at the rails 3.2 failures? This is telling me maybe we should stop supporting Rails < 4 but...

Thanks Scottley. Sadly I've already moved on to a different service but I'm glad this exists.