1
I have a very simple Rails application, with only one controller and two actions. Basically it’s pages with images, css, and some Java. I would like to generate a version of this application that runs completely offline, only in html, without the need to install ruby or Rails in the client. What’s the best way to do that?
I don’t think there’s an automated way to do this, you’ll have to do it manually. But since it’s only 2 pages, I think you can do it real quick with good old
Ctrl-C + Ctrl-V
– user7261