We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this:
command :new do |c| c.flag :p c.switch :f c.action do |global_options,options,args| end end
The help output is:
new [command options] nil
Adding a desc '' before the command call fixes it.
desc ''
command
The text was updated successfully, but these errors were encountered:
fb84cc3
No branches or pull requests
Given this:
The help output is:
Adding a
desc ''
before thecommand
call fixes it.The text was updated successfully, but these errors were encountered: