The goal of ruby programming is (generally) to either write a web application, or write a program that can be run from the command line.
For a web application a rake run
option might be worthwhile, but really the most common web applicaition framework is Rails, and for rails, you can just run a dedicated webserver running your web app with script/server
.
For a commandline program, just run whichever ruby file you have intended as the main file (the one with the code that runs at startup). Ruby doesn't have any of the difficulties that Java does (e.g. having a jar file with the right Main-class
attribute, and getting the classpath right, etc...). So you don't really need a rake run
target, because there's no complexity that needs to be hidden in the rakefile.