Just like the title says :
= image_tag @organi开发者_运维知识库zation.logo.url(:cropped)
I want this to appear as
<img src="picture.jpg?23412341234" />
Isn't this already the default in Rails?
That's called an asset timestamp and should reflect the latest time that the asset was modified.
Check if you have something as follows in your configuration files (environment.rb, development.rb ...). This line of code disables asset timestamps.
ENV['RAILS_ASSET_ID'] = ''
精彩评论