@@ -88,6 +88,7 @@ Commands:
8888Options:
8989 -c, [--config=< config file path> ] # Path to the Tapioca configuration file
9090 # Default: sorbet/tapioca/config.yml
91+ [--env= key:value] # Environment variables to set before running Tapioca
9192 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
9293 # Default: false
9394
@@ -122,6 +123,7 @@ Usage:
122123Options:
123124 -c, [--config=< config file path> ] # Path to the Tapioca configuration file
124125 # Default: sorbet/tapioca/config.yml
126+ [--env= key:value] # Environment variables to set before running Tapioca
125127 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
126128 # Default: false
127129
@@ -202,6 +204,7 @@ Options:
202204 # Default: true
203205 -c , [--config=< config file path> ] # Path to the Tapioca configuration file
204206 # Default: sorbet/tapioca/config.yml
207+ [--env= key:value] # Environment variables to set before running Tapioca
205208 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
206209 # Default: false
207210
@@ -376,6 +379,7 @@ Options:
376379 --typed, -t, [--typed-overrides=gem:level [gem:level ...]] # Override for typed sigils for pulled annotations
377380 -c, [--config=<config file path>] # Path to the Tapioca configuration file
378381 # Default: sorbet/tapioca/config.yml
382+ [--env=key:value] # Environment variables to set before running Tapioca
379383 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
380384 # Default: false
381385
@@ -505,6 +509,7 @@ Options:
505509 [--compiler-options=key:value] # Options to pass to the DSL compilers
506510 -c, [--config=<config file path>] # Path to the Tapioca configuration file
507511 # Default: sorbet/tapioca/config.yml
512+ [--env=key:value] # Environment variables to set before running Tapioca
508513 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
509514 # Default: false
510515
@@ -900,6 +905,7 @@ Options:
900905 -w, [--workers= N] # Number of parallel workers (default: auto)
901906 -c, [--config=< config file path> ] # Path to the Tapioca configuration file
902907 # Default: sorbet/tapioca/config.yml
908+ [--env= key:value] # Environment variables to set before running Tapioca
903909 -V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
904910 # Default: false
905911
@@ -938,11 +944,17 @@ The full configuration file, with each option and its default value, would look
938944```yaml
939945---
940946require:
947+ env: {}
948+ verbose: false
941949 postrequire: sorbet/tapioca/require.rb
942950todo:
951+ env: {}
952+ verbose: false
943953 todo_file: sorbet/rbi/todo.rbi
944954 file_header: true
945955dsl:
956+ env: {}
957+ verbose: false
946958 outdir: sorbet/rbi/dsl
947959 file_header: true
948960 only: []
958970 skip_constant: []
959971 compiler_options: {}
960972gem:
973+ env: {}
974+ verbose: false
961975 outdir: sorbet/rbi/gems
962976 file_header: true
963977 all: false
978992 environment: development
979993 halt_upon_load_error: true
980994check_shims:
995+ env: {}
996+ verbose: false
981997 gem_rbi_dir: sorbet/rbi/gems
982998 dsl_rbi_dir: sorbet/rbi/dsl
983999 shim_rbi_dir: sorbet/rbi/shims
@@ -986,6 +1002,8 @@ check_shims:
9861002 payload: true
9871003 workers: 1
9881004annotations:
1005+ env: {}
1006+ verbose: false
9891007 sources:
9901008 - https://raw.githubusercontent.com/Shopify/rbi-central/main
9911009 netrc: true
0 commit comments