@@ -23,7 +23,7 @@ class Cli < Thor
2323 desc : "Verbose output for debugging purposes" ,
2424 default : false
2525
26- desc "init" , "get project ready for type checking"
26+ desc "init" , "Get project ready for type checking"
2727 def init
2828 # We need to make sure that trackers stay enabled until the `gem` command is invoked
2929 Runtime ::Trackers . with_trackers_enabled do
@@ -41,7 +41,7 @@ def init
4141 print_init_next_steps
4242 end
4343
44- desc "configure" , "initialize folder structure and type checking configuration"
44+ desc "configure" , "Initialize folder structure and type checking configuration"
4545 option :postrequire , type : :string , default : DEFAULT_POSTREQUIRE_FILE
4646 def configure
4747 command = Commands ::Configure . new (
@@ -52,7 +52,7 @@ def configure
5252 command . run
5353 end
5454
55- desc "require" , "generate the list of files to be required by tapioca"
55+ desc "require" , "Generate the list of files to be required by tapioca"
5656 option :postrequire , type : :string , default : DEFAULT_POSTREQUIRE_FILE
5757 def require
5858 command = Commands ::Require . new (
@@ -62,7 +62,7 @@ def require
6262 command . run
6363 end
6464
65- desc "todo" , "generate the list of unresolved constants"
65+ desc "todo" , "Generate the list of unresolved constants"
6666 option :todo_file ,
6767 type : :string ,
6868 desc : "Path to the generated todo RBI file" ,
@@ -79,7 +79,7 @@ def todo
7979 command . run_with_deprecation
8080 end
8181
82- desc "dsl [constant...]" , "generate RBIs for dynamic methods"
82+ desc "dsl [constant...]" , "Generate RBIs for dynamic methods"
8383 option :outdir ,
8484 aliases : [ "--out" , "-o" ] ,
8585 banner : "directory" ,
@@ -168,7 +168,7 @@ def dsl(*constant_or_paths)
168168 command . run
169169 end
170170
171- desc "gem [gem...]" , "generate RBIs from gems"
171+ desc "gem [gem...]" , "Generate RBIs from gems"
172172 option :outdir ,
173173 aliases : [ "--out" , "-o" ] ,
174174 banner : "directory" ,
@@ -298,7 +298,7 @@ def gem(*gems)
298298 end
299299 map "gems" => :gem
300300
301- desc "check-shims" , "check duplicated definitions in shim RBIs"
301+ desc "check-shims" , "Check duplicated definitions in shim RBIs"
302302 option :gem_rbi_dir , type : :string , desc : "Path to gem RBIs" , default : DEFAULT_GEM_DIR
303303 option :dsl_rbi_dir , type : :string , desc : "Path to DSL RBIs" , default : DEFAULT_DSL_DIR
304304 option :shim_rbi_dir , type : :string , desc : "Path to shim RBIs" , default : DEFAULT_SHIM_DIR
@@ -351,7 +351,7 @@ def annotations
351351
352352 map [ "--version" , "-v" ] => :__print_version
353353
354- desc "--version, -v" , "show version"
354+ desc "--version, -v" , "Show version"
355355 def __print_version
356356 puts "Tapioca v#{ Tapioca ::VERSION } "
357357 end
0 commit comments