I want to create a command line tool in Ruby using Thor. This tool should be packaged like a gem so that it is easily installed and removed.
Creating and publishing the gem I did. I also created some Thor scripts that also work. However, I do not know how to combine them.
My goal is to call my tool like this: Mytool task parameters mytool taskgroup: task param --options
I know how to make one Thor script executable. However, how can I make a bunch of accurate scripts available with a single command?
source share