在Ruby的Thor上,如何在应用程序中显示命令用法

时间:2017-09-12 02:01:44

标签: ruby thor

我正在使用Ruby和Thor构建CLI,如果没有选项通过,我想在屏幕上打印命令用法。

伪代码行下的东西:

Class Test < Thor
  desc 'test', 'test'
  options :run_command

  def run_command
    if options.empty?
      # Print Usage
    end
  end
end

我目前正在使用以下hack(我并不为此感到自豪!= P):

Class Test < Thor
  desc 'test', 'test'
  options :run_command

  def run_command
    if options.empty?
      puts `my_test_command help run_command`
    end
  end
end

这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

您可以使用command_help显示命令的帮助信息:

require 'thor'

class Test < Thor
  desc 'run_command --from=FROM', 'test usage help'
  option :from
  def run_command
    unless options[:from]
      Test.command_help(Thor::Base.shell.new, 'run_command')
      return
    end

    puts "Called command from #{options[:from]}"
  end
end

Test.start

然后没有选项运行:

$ ruby example.rb run_command
Usage:
  example.rb run_command --from=FROM

Options:
  [--from=FROM]

test usage help

并使用选项

运行
$ ruby example.rb run_command --from=somewhere
Called command from somewhere