How to make attachment_fu generate RESTFUL URL

Rain,

Override the full_filename method in your model to make the filename whatever you want:

  def full_filename(thumbnail = nil)     File.join(base_path, 'my/restful/route', thumbnail_name_for(thumbnail))   end

  def base_path     ''   end

Hope this helps.