Skip to content
krimdomu edited this page Jan 24, 2011 · 1 revision

You can use (R)?ex to manage your local tasks like compiling, bundling, managing services, and much more.

Here is a simple example:

use Rex::Commands::Run;

desc "Build App";
task "build", sub {
    run "make";
};
   
desc "Run App";
task "run", sub {
    run "./myapp";
};
Clone this wiki locally