Class: SkillBench::Cli::Eval::HelpEvalCommand
- Inherits:
-
BaseEvalCommand
- Object
- BaseEvalCommand
- SkillBench::Cli::Eval::HelpEvalCommand
- Defined in:
- lib/skill_bench/cli/eval/eval_commands.rb
Overview
Handles help display for eval commands
Instance Method Summary collapse
-
#call(_argv) ⇒ Integer
Shows help information.
Instance Method Details
#call(_argv) ⇒ Integer
Shows help information
103 104 105 106 107 108 |
# File 'lib/skill_bench/cli/eval/eval_commands.rb', line 103 def call(_argv) puts 'Usage: skill-bench eval new <name> [options]' puts ' --runtime TYPE rails, ruby, etc. (default: ruby)' puts 'Usage: skill-bench eval generate <skill-name> [--name <eval-name>]' 0 end |