Ability to create a standalone Rails application

I made a small Rails application. Is there an option to convert it to a standalone version so that you can run it without installing rails, starting a server, etc.?

Edit: Sorry, the question didn't go through. I want to collect everything "as is" with all the gems into one executable file.

+3


source to share


1 answer


No Ruby installation, no RubyGems installation, no gems to install, no SQLite installed; There is only one executable file!

You can create a standalone executable with RubyScript2Exe

.



RubyScript2Exe converts your Ruby script into a standalone, compressed Windows, Linux, or Mac OS X (Darwin) executable.

See the section here for detailed instructions .

+3


source







All Articles