I have a bunch of ruby scripts in a folder which is added to $PATH and I think that some of them might be usefult to others. So I want to distribute them and the only ‘good’ way I know is rubygems (gem containing only binary), it has a very useful advantage of versioning, but also a drawback of initialization time (sometimes it takes some seconds before script starts to run). Are there alternatives?
I have a bunch of ruby scripts in a folder which is added to
Share
Gem is good enought for this. I use gem for this purposes as it is very convenient to intall and update.