Generate Rails application offline [closed]

1

I have a very simple Rails application, with only one controller and two actions. Basically they are pages with images, css, and some javascripts. I would like to generate a version of this application that runs totally offline, just in html, without the need to install ruby or rails on the client. What is the best way to do this?

    
asked by anonymous 22.08.2014 / 14:46

1 answer

1

There is no way to run ruby on rails, you have to have ruby installed. If only html, css and js do not have to do this in rails it only does the static pages in html, css and js that runs offline.

    
23.08.2014 / 04:37