checkoff 0.219.0 → 0.221.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +3 -4
  3. data/.overcommit.yml +2 -0
  4. data/.rubocop.yml +4 -0
  5. data/.rubocop_todo.yml +2 -1
  6. data/Gemfile +1 -0
  7. data/Gemfile.lock +42 -8
  8. data/Makefile +13 -7
  9. data/bin/tapioca +1 -1
  10. data/checkoff.gemspec +1 -0
  11. data/fix.sh +1 -0
  12. data/lib/checkoff/tasks.rb +8 -2
  13. data/lib/checkoff/version.rb +1 -1
  14. data/sorbet/rbi/gems/{activesupport@7.1.3.rbi → activesupport@7.1.5.rbi} +157 -160
  15. data/sorbet/rbi/gems/brakeman@6.2.2.rbi +222 -0
  16. data/sorbet/rbi/gems/{i18n@1.14.1.rbi → i18n@1.14.6.rbi} +135 -102
  17. data/sorbet/rbi/gems/{logger@1.6.1.rbi → logger@1.6.2.rbi} +4 -1
  18. data/sorbet/rbi/gems/{mutex_m@0.2.0.rbi → mutex_m@0.3.0.rbi} +15 -12
  19. data/sorbet/rbi/gems/{nokogiri@1.16.7.rbi → nokogiri@1.17.0.rbi} +1693 -803
  20. data/sorbet/rbi/gems/{racc@1.7.3.rbi → racc@1.8.1.rbi} +33 -33
  21. data/sorbet/rbi/gems/{rack@3.0.8.rbi → rack@3.1.8.rbi} +697 -985
  22. data/sorbet/rbi/gems/{rexml@3.2.6.rbi → rexml@3.3.9.rbi} +354 -278
  23. data/sorbet/rbi/gems/rubocop-rspec@3.0.0.rbi +7546 -0
  24. data/sorbet/rbi/gems/securerandom@0.4.0.rbi +75 -0
  25. data/sorbet/rbi/gems/solargraph-rails@1.1.0-9dc37915bd4f3b169046e34db6fb32193ab347d8.rbi +320 -0
  26. data/sorbet/rbi/gems/{tapioca@0.16.4.rbi → tapioca@0.16.5.rbi} +89 -76
  27. data/sorbet/rbi/gems/{yard@0.9.34.rbi → yard@0.9.37.rbi} +429 -270
  28. metadata +33 -16
  29. data/sorbet/rbi/gems/ostruct@0.6.1.rbi +0 -354
  30. /data/sorbet/rbi/gems/{drb@2.2.0.rbi → drb@2.2.1.rbi} +0 -0
  31. /data/sorbet/rbi/gems/{gli@2.21.1.rbi → gli@2.22.0.rbi} +0 -0
  32. /data/sorbet/rbi/gems/{overcommit@0.64.0.rbi → overcommit@0.64.1.rbi} +0 -0
@@ -5,35 +5,35 @@
5
5
  # Please instead update this file by running `bin/tapioca gem racc`.
6
6
 
7
7
 
8
- # source://racc//lib/racc/parser.rb#23
8
+ # source://racc//lib/racc/parser.rb#19
9
9
  ParseError = Racc::ParseError
10
10
 
11
11
  # source://racc//lib/racc/info.rb#17
12
12
  Racc::Copyright = T.let(T.unsafe(nil), String)
13
13
 
14
- # source://racc//lib/racc/parser.rb#188
14
+ # source://racc//lib/racc/parser.rb#184
15
15
  class Racc::Parser
16
- # source://racc//lib/racc/parser.rb#283
16
+ # source://racc//lib/racc/parser.rb#279
17
17
  def _racc_do_parse_rb(arg, in_debug); end
18
18
 
19
- # source://racc//lib/racc/parser.rb#483
19
+ # source://racc//lib/racc/parser.rb#479
20
20
  def _racc_do_reduce(arg, act); end
21
21
 
22
22
  # common
23
23
  #
24
- # source://racc//lib/racc/parser.rb#386
24
+ # source://racc//lib/racc/parser.rb#382
25
25
  def _racc_evalact(act, arg); end
26
26
 
27
- # source://racc//lib/racc/parser.rb#236
27
+ # source://racc//lib/racc/parser.rb#232
28
28
  def _racc_init_sysvars; end
29
29
 
30
- # source://racc//lib/racc/parser.rb#224
30
+ # source://racc//lib/racc/parser.rb#220
31
31
  def _racc_setup; end
32
32
 
33
- # source://racc//lib/racc/parser.rb#333
33
+ # source://racc//lib/racc/parser.rb#329
34
34
  def _racc_yyparse_rb(recv, mid, arg, c_debug); end
35
35
 
36
- # source://racc//lib/racc/parser.rb#266
36
+ # source://racc//lib/racc/parser.rb#262
37
37
  def do_parse; end
38
38
 
39
39
  # The method to fetch next token.
@@ -47,7 +47,7 @@ class Racc::Parser
47
47
  #
48
48
  # @raise [NotImplementedError]
49
49
  #
50
- # source://racc//lib/racc/parser.rb#279
50
+ # source://racc//lib/racc/parser.rb#275
51
51
  def next_token; end
52
52
 
53
53
  # This method is called when a parse error is found.
@@ -67,92 +67,92 @@ class Racc::Parser
67
67
  #
68
68
  # @raise [ParseError]
69
69
  #
70
- # source://racc//lib/racc/parser.rb#539
70
+ # source://racc//lib/racc/parser.rb#535
71
71
  def on_error(t, val, vstack); end
72
72
 
73
- # source://racc//lib/racc/parser.rb#588
73
+ # source://racc//lib/racc/parser.rb#584
74
74
  def racc_accept; end
75
75
 
76
- # source://racc//lib/racc/parser.rb#593
76
+ # source://racc//lib/racc/parser.rb#589
77
77
  def racc_e_pop(state, tstack, vstack); end
78
78
 
79
- # source://racc//lib/racc/parser.rb#600
79
+ # source://racc//lib/racc/parser.rb#596
80
80
  def racc_next_state(curstate, state); end
81
81
 
82
- # source://racc//lib/racc/parser.rb#606
82
+ # source://racc//lib/racc/parser.rb#602
83
83
  def racc_print_stacks(t, v); end
84
84
 
85
- # source://racc//lib/racc/parser.rb#615
85
+ # source://racc//lib/racc/parser.rb#611
86
86
  def racc_print_states(s); end
87
87
 
88
88
  # For debugging output
89
89
  #
90
- # source://racc//lib/racc/parser.rb#562
90
+ # source://racc//lib/racc/parser.rb#558
91
91
  def racc_read_token(t, tok, val); end
92
92
 
93
- # source://racc//lib/racc/parser.rb#575
93
+ # source://racc//lib/racc/parser.rb#571
94
94
  def racc_reduce(toks, sim, tstack, vstack); end
95
95
 
96
- # source://racc//lib/racc/parser.rb#569
96
+ # source://racc//lib/racc/parser.rb#565
97
97
  def racc_shift(tok, tstack, vstack); end
98
98
 
99
- # source://racc//lib/racc/parser.rb#622
99
+ # source://racc//lib/racc/parser.rb#618
100
100
  def racc_token2str(tok); end
101
101
 
102
102
  # Convert internal ID of token symbol to the string.
103
103
  #
104
- # source://racc//lib/racc/parser.rb#628
104
+ # source://racc//lib/racc/parser.rb#624
105
105
  def token_to_str(t); end
106
106
 
107
107
  # Exit parser.
108
108
  # Return value is +Symbol_Value_Stack[0]+.
109
109
  #
110
- # source://racc//lib/racc/parser.rb#552
110
+ # source://racc//lib/racc/parser.rb#548
111
111
  def yyaccept; end
112
112
 
113
113
  # Leave error recovering mode.
114
114
  #
115
- # source://racc//lib/racc/parser.rb#557
115
+ # source://racc//lib/racc/parser.rb#553
116
116
  def yyerrok; end
117
117
 
118
118
  # Enter error recovering mode.
119
119
  # This method does not call #on_error.
120
120
  #
121
- # source://racc//lib/racc/parser.rb#546
121
+ # source://racc//lib/racc/parser.rb#542
122
122
  def yyerror; end
123
123
 
124
- # source://racc//lib/racc/parser.rb#328
124
+ # source://racc//lib/racc/parser.rb#324
125
125
  def yyparse(recv, mid); end
126
126
 
127
127
  class << self
128
- # source://racc//lib/racc/parser.rb#220
128
+ # source://racc//lib/racc/parser.rb#216
129
129
  def racc_runtime_type; end
130
130
  end
131
131
  end
132
132
 
133
- # source://racc//lib/racc/parser.rb#209
133
+ # source://racc//lib/racc/parser.rb#205
134
134
  Racc::Parser::Racc_Main_Parsing_Routine = T.let(T.unsafe(nil), Symbol)
135
135
 
136
136
  Racc::Parser::Racc_Runtime_Core_Id_C = T.let(T.unsafe(nil), String)
137
137
 
138
- # source://racc//lib/racc/parser.rb#211
138
+ # source://racc//lib/racc/parser.rb#207
139
139
  Racc::Parser::Racc_Runtime_Core_Version = T.let(T.unsafe(nil), String)
140
140
 
141
141
  Racc::Parser::Racc_Runtime_Core_Version_C = T.let(T.unsafe(nil), String)
142
142
 
143
- # source://racc//lib/racc/parser.rb#191
143
+ # source://racc//lib/racc/parser.rb#187
144
144
  Racc::Parser::Racc_Runtime_Core_Version_R = T.let(T.unsafe(nil), String)
145
145
 
146
- # source://racc//lib/racc/parser.rb#212
146
+ # source://racc//lib/racc/parser.rb#208
147
147
  Racc::Parser::Racc_Runtime_Type = T.let(T.unsafe(nil), String)
148
148
 
149
- # source://racc//lib/racc/parser.rb#190
149
+ # source://racc//lib/racc/parser.rb#186
150
150
  Racc::Parser::Racc_Runtime_Version = T.let(T.unsafe(nil), String)
151
151
 
152
- # source://racc//lib/racc/parser.rb#210
152
+ # source://racc//lib/racc/parser.rb#206
153
153
  Racc::Parser::Racc_YY_Parse_Method = T.let(T.unsafe(nil), Symbol)
154
154
 
155
- # source://racc//lib/racc/parser.rb#185
155
+ # source://racc//lib/racc/parser.rb#181
156
156
  Racc::Racc_No_Extensions = T.let(T.unsafe(nil), FalseClass)
157
157
 
158
158
  # source://racc//lib/racc/info.rb#15