module Chid
@deprecated
Constants
- REGEX_ACTIONS
The Regex Actions are used to execute automatically some Rake::Task
The Keys are the name of the task
The Values are a list of possile matchs (even Rake::TaskArguments) from a typed text
Example 1:
:hello => [/hail/]
That means must exist a Rake::Task called :hello and when typed 'hail' the app will match with the value of the array and will execute the Rake::Task
Example 2:
:'install:dotfiles' => [/install dotfiles/] In that case the key has a namespace (install) and a task name (dotfiles)
If you want to pass some argument you can use the Capture Enclosed option on regex.
Example 3:
:hello => [/hails(.*)/]
That means the captured arguments to use on Rake::Task is inside the '()'. In that case any characteres typed after 'hail ' will be used as Rake::TaskArguments
- VERSION