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
When I use "Command" as class name, the help information will show twice.
require 'thor' class Command < Thor desc "action1", "hahaha" def action1 end desc "action2", "hehehe" def action2 end end Command.start
And the output is blow.
ruby tmp.rb Commands: tmp.rb action1 # hahaha tmp.rb action1 # hahaha tmp.rb action2 # hehehe tmp.rb action2 # hehehe tmp.rb help [COMMAND] # Describe available commands or one specific c...
The text was updated successfully, but these errors were encountered:
+1 Same issue when class is named Util
Sorry, something went wrong.
rename util to fits_util to avoid help message printing twice
cb2c101
rails/thor#416
No branches or pull requests
When I use "Command" as class name, the help information will show twice.
And the output is blow.
The text was updated successfully, but these errors were encountered: