@@ -88,6 +88,7 @@ Commands:
88
88
Options:
89
89
-c, [--config=< config file path> ] # Path to the Tapioca configuration file
90
90
# Default: sorbet/tapioca/config.yml
91
+ [--env= key:value] # Environment variables to set before running Tapioca
91
92
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
92
93
# Default: false
93
94
@@ -122,6 +123,7 @@ Usage:
122
123
Options:
123
124
-c, [--config=< config file path> ] # Path to the Tapioca configuration file
124
125
# Default: sorbet/tapioca/config.yml
126
+ [--env= key:value] # Environment variables to set before running Tapioca
125
127
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
126
128
# Default: false
127
129
@@ -202,6 +204,7 @@ Options:
202
204
# Default: true
203
205
-c , [--config=< config file path> ] # Path to the Tapioca configuration file
204
206
# Default: sorbet/tapioca/config.yml
207
+ [--env= key:value] # Environment variables to set before running Tapioca
205
208
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
206
209
# Default: false
207
210
@@ -376,6 +379,7 @@ Options:
376
379
--typed, -t, [--typed-overrides=gem:level [gem:level ...]] # Override for typed sigils for pulled annotations
377
380
-c, [--config=<config file path>] # Path to the Tapioca configuration file
378
381
# Default: sorbet/tapioca/config.yml
382
+ [--env=key:value] # Environment variables to set before running Tapioca
379
383
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
380
384
# Default: false
381
385
@@ -505,6 +509,7 @@ Options:
505
509
[--compiler-options=key:value] # Options to pass to the DSL compilers
506
510
-c, [--config=<config file path>] # Path to the Tapioca configuration file
507
511
# Default: sorbet/tapioca/config.yml
512
+ [--env=key:value] # Environment variables to set before running Tapioca
508
513
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
509
514
# Default: false
510
515
@@ -900,6 +905,7 @@ Options:
900
905
-w, [--workers= N] # Number of parallel workers (default: auto)
901
906
-c, [--config=< config file path> ] # Path to the Tapioca configuration file
902
907
# Default: sorbet/tapioca/config.yml
908
+ [--env= key:value] # Environment variables to set before running Tapioca
903
909
-V, [--verbose], [--no-verbose], [--skip-verbose] # Verbose output for debugging purposes
904
910
# Default: false
905
911
@@ -938,11 +944,17 @@ The full configuration file, with each option and its default value, would look
938
944
```yaml
939
945
---
940
946
require:
947
+ env: {}
948
+ verbose: false
941
949
postrequire: sorbet/tapioca/require.rb
942
950
todo:
951
+ env: {}
952
+ verbose: false
943
953
todo_file: sorbet/rbi/todo.rbi
944
954
file_header: true
945
955
dsl:
956
+ env: {}
957
+ verbose: false
946
958
outdir: sorbet/rbi/dsl
947
959
file_header: true
948
960
only: []
958
970
skip_constant: []
959
971
compiler_options: {}
960
972
gem:
973
+ env: {}
974
+ verbose: false
961
975
outdir: sorbet/rbi/gems
962
976
file_header: true
963
977
all: false
978
992
environment: development
979
993
halt_upon_load_error: true
980
994
check_shims:
995
+ env: {}
996
+ verbose: false
981
997
gem_rbi_dir: sorbet/rbi/gems
982
998
dsl_rbi_dir: sorbet/rbi/dsl
983
999
shim_rbi_dir: sorbet/rbi/shims
@@ -986,6 +1002,8 @@ check_shims:
986
1002
payload: true
987
1003
workers: 1
988
1004
annotations:
1005
+ env: {}
1006
+ verbose: false
989
1007
sources:
990
1008
- https://raw.githubusercontent.com/Shopify/rbi-central/main
991
1009
netrc: true
0 commit comments