module SubOptParser::AutoRequire

Methods and logic to support auto-requiring commands that are not found in a sub-command.

This is done by loading files named after the command, as shown in the example. When the ‘.rb` file is loaded, the values # AutoRequire.auto_require_command_parent and

AutoRequire.auto_require_command_name are set to the current parent command and the name

of the command trying to be loaded.

so = SubOptParser.new do |opt|
  opt.autorequire_root = "my_proj/my_commands"
  opt.autorequire_suffix = "_command"
end

# This will require...
# require "my_proj/my_commands/a_command"
# require "my_proj/my_commands/a/b_command"
# require "my_proj/my_commands/a/b/c_command"
so.call("a", "b", "c")

The contents of ‘c_command.rb` might look like this…

require "suboptparse/auto_require"

SubOptParser::AutoRequire.register do |so, name|
  so.addcmd(name, "A command.") do |so|
    so.cmd do
      so.shared_state["x"] = 3
    end
  end
end