rake
Installation
SKILL.md
Rake Task System
Guide to creating and managing Rake tasks for Ruby projects.
Basic Tasks
Defining Tasks
# Rakefile or lib/tasks/*.rake
desc "Greet the user"
task :greet do
puts "Hello, World!"
end
# Run with: rake greet