Class: Tapioca::Cli
- Inherits:
-
Thor
- Object
- Thor
- Tapioca::Cli
- Includes:
- CliHelper, ConfigHelper, EnvHelper
- Defined in:
- lib/tapioca/cli.rb
Constant Summary collapse
- FILE_HEADER_OPTION_DESC =
"Add a \"This file is generated\" header on top of each generated RBI file"
Instance Attribute Summary
Attributes included from ConfigHelper
Instance Method Summary collapse
- #__print_version ⇒ Object
- #annotations ⇒ Object
- #check_shims ⇒ Object
- #configure ⇒ Object
- #dsl(*constant_or_paths) ⇒ Object
- #gem(*gems) ⇒ Object
- #init ⇒ Object
- #require ⇒ Object
- #todo ⇒ Object
Methods included from EnvHelper
Methods included from ConfigHelper
Methods included from CliHelper
#netrc_file, #rbi_formatter, #say_error
Instance Method Details
#__print_version ⇒ Object
366 367 368 |
# File 'lib/tapioca/cli.rb', line 366 def __print_version puts "Tapioca v#{Tapioca::VERSION}" end |
#annotations ⇒ Object
348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/tapioca/cli.rb', line 348 def annotations if ![:netrc] && [:netrc_file] raise Thor::Error, set_color("Options `--no-netrc` and `--netrc-file` can't be used together", :bold, :red) end command = Commands::Annotations.new( central_repo_root_uris: [:sources], auth: [:auth], netrc_file: netrc_file(), typed_overrides: [:typed_overrides], ) command.run end |
#check_shims ⇒ Object
320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/tapioca/cli.rb', line 320 def check_shims command = Commands::CheckShims.new( gem_rbi_dir: [:gem_rbi_dir], dsl_rbi_dir: [:dsl_rbi_dir], shim_rbi_dir: [:shim_rbi_dir], annotations_rbi_dir: [:annotations_rbi_dir], todo_rbi_file: [:todo_rbi_file], payload: [:payload], number_of_workers: [:workers], ) command.run end |
#configure ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/tapioca/cli.rb', line 46 def configure command = Commands::Configure.new( sorbet_config: SORBET_CONFIG_FILE, tapioca_config: [:config], default_postrequire: [:postrequire], ) command.run end |
#dsl(*constant_or_paths) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/tapioca/cli.rb', line 147 def dsl(*constant_or_paths) set_environment() # Assume anything starting with a capital letter or colon is a class, otherwise a path constants, paths = constant_or_paths.partition { |c| c =~ /\A[A-Z:]/ } command_args = { requested_constants: constants, requested_paths: paths.map { |p| Pathname.new(p) }, outpath: Pathname.new([:outdir]), only: [:only], exclude: [:exclude], file_header: [:file_header], tapioca_path: TAPIOCA_DIR, skip_constant: [:skip_constant], quiet: [:quiet], verbose: [:verbose], number_of_workers: [:workers], rbi_formatter: rbi_formatter(), app_root: [:app_root], halt_upon_load_error: [:halt_upon_load_error], compiler_options: [:compiler_options], } command = if [:verify] Commands::DslVerify.new(**command_args) elsif [:list_compilers] Commands::DslCompilerList.new(**command_args) else Commands::DslGenerate.new(**command_args) end command.run end |
#gem(*gems) ⇒ Object
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/tapioca/cli.rb', line 264 def gem(*gems) set_environment() all = [:all] verify = [:verify] include_dependencies = [:include_dependencies] raise MalformattedArgumentError, "Options '--all' and '--verify' are mutually exclusive" if all && verify if gems.empty? raise MalformattedArgumentError, "Option '--include-dependencies' must be provided with gems" if include_dependencies else raise MalformattedArgumentError, "Option '--all' must be provided without any other arguments" if all raise MalformattedArgumentError, "Option '--verify' must be provided without any other arguments" if verify end command_args = { gem_names: all ? [] : gems, exclude: [:exclude], include_dependencies: [:include_dependencies], prerequire: [:prerequire], postrequire: [:postrequire], typed_overrides: [:typed_overrides], outpath: Pathname.new([:outdir]), file_header: [:file_header], include_doc: [:doc], include_loc: [:loc], include_exported_rbis: [:exported_gem_rbis], number_of_workers: [:workers], auto_strictness: [:auto_strictness], dsl_dir: [:dsl_dir], rbi_formatter: rbi_formatter(), halt_upon_load_error: [:halt_upon_load_error], } command = if verify Commands::GemVerify.new(**command_args) elsif !gems.empty? || all Commands::GemGenerate.new(**command_args) else Commands::GemSync.new(**command_args) end command.run end |
#init ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/tapioca/cli.rb', line 27 def init # We need to make sure that trackers stay enabled until the `gem` command is invoked Runtime::Trackers.with_trackers_enabled do invoke(:configure) invoke(:annotations) invoke(:gem) end # call the command directly to skip deprecation warning Commands::Todo.new( todo_file: DEFAULT_TODO_FILE, file_header: true, ).run print_init_next_steps end |
#require ⇒ Object
57 58 59 60 61 62 63 |
# File 'lib/tapioca/cli.rb', line 57 def require command = Commands::Require.new( requires_path: [:postrequire], sorbet_config_path: SORBET_CONFIG_FILE, ) command.run end |