Subject: | can't imply options with optional type |
This line:
name => _munge((split /[=|!]/, $_->[0] || '')[0]),
...should also split on :
This should work:
[ 'irc:s', 'start IRC component automatically' ],
[ 'irc-nick=s', 'nick to use on IRC', {
implies => 'irc',
default => "bot[$ENV{USER}]",
} ],
but instead complains that 'irc' does not exist'
--
rjbs