Rake Task Runner - Execute Ruby Tasks | Online Free DevTools by Hexmos
Execute Ruby tasks effortlessly with Rake Task Runner. Streamline build processes and automate development tasks using Rakefile configurations. Free online tool, no registration required.
rake
A Make-like program for Ruby. Tasks for
rakeare specified in a Rakefile. More information: https://ruby.github.io/rake.
- Run the
defaultRakefile task:
rake
- Run a specific task:
rake {{task}}
- Execute
njobs at a time in parallel (number of CPU cores + 4 by default):
rake --jobs {{n}}
- Use a specific Rakefile:
rake --rakefile {{path/to/Rakefile}}
- Execute
rakefrom another directory:
rake --directory {{path/to/directory}}
