I'm trying to embed the Google document viewer (http://googlesystem.blogspot.com/2009/09/embeddable-google-document-viewer.html) on my Ruby on Rails site and it keeps displaying "Sorry, this type of document is not supported for viewing". My rails code uses a send_file call which looks like this:
send_file(File.join(@document.path, @document.filename), {:filename => @document.name, :type => @document.filetype})
In the server log, I can see that the file is being sent, but the document viewer is not displaying it. Does anyone have any ideas how I might be able to fix this?