Distributing ruby ​​application as standalone in linux and windows

I developed a ruby ​​application (desktop application) on version 1.9.1 with several gems (qtbindings). Now I would like to distribute my application to users as a stand-alone. I would like to distribute my application as a standalone in linux. What is the best stone / script to do the job.

+7
source share
1 answer

Check out this link for several options for distributing the Ruby script as a “native” executable.

Keep in mind that Linux users usually do not need this, bundle install and ruby myscript.rb enough for these systems.

+2
source

All Articles