We are using gravtars for a site currently being developed in rails 2.3.4 and i am finding that the rails side tends to cache the images even after there is a change at the gravtar side. I know with javascript you can prevent caching when using thejavacript_include_tag :cache => false
method, however, is there a way to prevent the cache when using the image_tag
helper?
I have read around a bit and it would appear that it used to append the timestamp information after the url with some paramaters (i.e. src="image.png?123123"
), but it doesn't seem to do it anymore.
Any ideas, or should i stop using those damn helpful helpers as a crutch and for once in my rails developing life write some actual code?