lunchmoney 1.1.0 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +7 -0
  3. data/.github/workflows/check_pipeline.yml +24 -0
  4. data/.github/workflows/ci.yml +11 -6
  5. data/.github/workflows/dependabot-rbi-updater.yml +3 -6
  6. data/.github/workflows/release_pipeline.yml +36 -0
  7. data/.mdlrc +4 -0
  8. data/.rubocop.yml +6 -2
  9. data/.simplecov +30 -0
  10. data/.toys/.toys.rb +1 -0
  11. data/.toys/coverage.rb +5 -0
  12. data/.toys/mdl.rb +5 -0
  13. data/Gemfile +4 -1
  14. data/Gemfile.lock +47 -18
  15. data/LICENSE +1 -1
  16. data/README.md +5 -3
  17. data/Rakefile +27 -0
  18. data/lib/lunchmoney/api.rb +126 -1
  19. data/lib/lunchmoney/calls/base.rb +8 -2
  20. data/lib/lunchmoney/errors.rb +17 -1
  21. data/lib/lunchmoney/objects/asset.rb +1 -0
  22. data/lib/lunchmoney/objects/object.rb +3 -1
  23. data/lib/lunchmoney/version.rb +1 -1
  24. data/lunchmoney.gemspec +3 -4
  25. data/sorbet/rbi/gems/chef-utils@18.4.2.rbi +8 -0
  26. data/sorbet/rbi/gems/docile@1.4.0.rbi +376 -0
  27. data/sorbet/rbi/gems/kramdown-parser-gfm@1.1.0.rbi +127 -0
  28. data/sorbet/rbi/gems/kramdown@2.4.0.rbi +3271 -0
  29. data/sorbet/rbi/gems/mdl@0.13.0.rbi +444 -0
  30. data/sorbet/rbi/gems/{minitest@5.21.2.rbi → minitest@5.22.2.rbi} +147 -144
  31. data/sorbet/rbi/gems/mixlib-cli@2.1.8.rbi +313 -0
  32. data/sorbet/rbi/gems/mixlib-config@3.0.27.rbi +580 -0
  33. data/sorbet/rbi/gems/mixlib-shellout@3.2.7.rbi +628 -0
  34. data/sorbet/rbi/gems/{rubocop-sorbet@0.7.6.rbi → rubocop-sorbet@0.7.7.rbi} +53 -6
  35. data/sorbet/rbi/gems/{rubocop@1.60.1.rbi → rubocop@1.60.2.rbi} +51 -30
  36. data/sorbet/rbi/gems/simplecov-html@0.12.3.rbi +216 -0
  37. data/sorbet/rbi/gems/simplecov@0.22.0.rbi +2148 -0
  38. data/sorbet/rbi/gems/simplecov_json_formatter@0.1.4.rbi +238 -0
  39. data/sorbet/rbi/gems/tomlrb@2.0.3.rbi +8 -0
  40. data/sorbet/rbi/gems/{toys@0.15.4.rbi → toys@0.15.5.rbi} +3 -3
  41. data/sorbet/rbi/gems/{webmock@3.19.1.rbi → webmock@3.20.0.rbi} +10 -10
  42. metadata +36 -18
  43. data/.DS_Store +0 -0
  44. data/.github/workflows/publish_gem.yml +0 -32
  45. /data/sorbet/rbi/gems/{crack@0.4.5.rbi → crack@1.0.0.rbi} +0 -0
  46. /data/sorbet/rbi/gems/{toys-core@0.15.4.rbi → toys-core@0.15.5.rbi} +0 -0
@@ -1199,12 +1199,6 @@ RuboCop::Cop::Sorbet::RedundantExtendTSig::RESTRICT_ON_SEND = T.let(T.unsafe(nil
1199
1199
  # - returns, or void
1200
1200
  # - soft, checked, or on_failure
1201
1201
  #
1202
- # # bad
1203
- # sig { returns(Integer).params(x: Integer) }
1204
- #
1205
- # # good
1206
- # sig { params(x: Integer).returns(Integer) }
1207
- #
1208
1202
  # @example
1209
1203
  # # bad
1210
1204
  # sig { void.abstract }
@@ -1212,6 +1206,12 @@ RuboCop::Cop::Sorbet::RedundantExtendTSig::RESTRICT_ON_SEND = T.let(T.unsafe(nil
1212
1206
  # # good
1213
1207
  # sig { abstract.void }
1214
1208
  #
1209
+ # # bad
1210
+ # sig { returns(Integer).params(x: Integer) }
1211
+ #
1212
+ # # good
1213
+ # sig { params(x: Integer).returns(Integer) }
1214
+ #
1215
1215
  # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/signature_build_order.rb#31
1216
1216
  class RuboCop::Cop::Sorbet::SignatureBuildOrder < ::RuboCop::Cop::Cop
1217
1217
  include ::RuboCop::Cop::Sorbet::SignatureHelp
@@ -1474,6 +1474,53 @@ RuboCop::Cop::Sorbet::ValidSigil::SIGIL_REGEX = T.let(T.unsafe(nil), Regexp)
1474
1474
  # source://rubocop-sorbet//lib/rubocop/cop/sorbet/sigils/valid_sigil.rb#53
1475
1475
  RuboCop::Cop::Sorbet::ValidSigil::STRICTNESS_LEVELS = T.let(T.unsafe(nil), Array)
1476
1476
 
1477
+ # Disallows the usage of `.void.checked(:tests)`.
1478
+ #
1479
+ # Using `.void` changes the value returned from the method, but only if
1480
+ # runtime type checking is enabled for the method. Methods marked `.void`
1481
+ # will return different values in tests compared with non-test
1482
+ # environments. This is particularly troublesome if branching on the
1483
+ # result of a `.void` method, because the returned value in test code
1484
+ # will be the truthy `VOID` value, while the non-test return value may be
1485
+ # falsy depending on the method's implementation.
1486
+ #
1487
+ # - Use `.returns(T.anything).checked(:tests)` to keep the runtime type
1488
+ # checking for the rest of the parameters.
1489
+ # - Use `.void.checked(:never)` if you are on an older version of Sorbet
1490
+ # which does not have `T.anything` (meaning versions 0.5.10781 or
1491
+ # earlier. Versions released after 2023-04-14 include `T.anything`.)
1492
+ #
1493
+ # @example
1494
+ #
1495
+ # # bad
1496
+ # sig { void.checked(:tests) }
1497
+ #
1498
+ # # good
1499
+ # sig { void }
1500
+ # sig { returns(T.anything).checked(:tests) }
1501
+ # sig { void.checked(:never) }
1502
+ #
1503
+ # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/void_checked_tests.rb#31
1504
+ class RuboCop::Cop::Sorbet::VoidCheckedTests < ::RuboCop::Cop::Base
1505
+ include ::RuboCop::Cop::RangeHelp
1506
+ include ::RuboCop::Cop::Sorbet::SignatureHelp
1507
+ extend ::RuboCop::Cop::AutoCorrector
1508
+
1509
+ # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/void_checked_tests.rb#37
1510
+ def checked_tests(param0); end
1511
+
1512
+ # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/void_checked_tests.rb#58
1513
+ def on_signature(node); end
1514
+
1515
+ private
1516
+
1517
+ # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/void_checked_tests.rb#48
1518
+ def top_level_void(node); end
1519
+ end
1520
+
1521
+ # source://rubocop-sorbet//lib/rubocop/cop/sorbet/signatures/void_checked_tests.rb#41
1522
+ RuboCop::Cop::Sorbet::VoidCheckedTests::MESSAGE = T.let(T.unsafe(nil), String)
1523
+
1477
1524
  module RuboCop::Cop::Style; end
1478
1525
 
1479
1526
  class RuboCop::Cop::Style::MutableConstant < ::RuboCop::Cop::Base
@@ -14115,17 +14115,17 @@ class RuboCop::Cop::Layout::RedundantLineBreak < ::RuboCop::Cop::Base
14115
14115
 
14116
14116
  # @return [Boolean]
14117
14117
  #
14118
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#121
14118
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#125
14119
14119
  def comment_within?(node); end
14120
14120
 
14121
14121
  # @return [Boolean]
14122
14122
  #
14123
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#91
14123
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#95
14124
14124
  def configured_to_not_be_inspected?(node); end
14125
14125
 
14126
14126
  # @return [Boolean]
14127
14127
  #
14128
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#115
14128
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#119
14129
14129
  def convertible_block?(node); end
14130
14130
 
14131
14131
  # @return [Boolean]
@@ -14133,7 +14133,12 @@ class RuboCop::Cop::Layout::RedundantLineBreak < ::RuboCop::Cop::Base
14133
14133
  # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#69
14134
14134
  def end_with_percent_blank_string?(processed_source); end
14135
14135
 
14136
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#143
14136
+ # @return [Boolean]
14137
+ #
14138
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#91
14139
+ def index_access_call_chained?(node); end
14140
+
14141
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#147
14137
14142
  def max_line_length; end
14138
14143
 
14139
14144
  # @return [Boolean]
@@ -14143,7 +14148,7 @@ class RuboCop::Cop::Layout::RedundantLineBreak < ::RuboCop::Cop::Base
14143
14148
 
14144
14149
  # @return [Boolean]
14145
14150
  #
14146
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#98
14151
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#102
14147
14152
  def other_cop_takes_precedence?(node); end
14148
14153
 
14149
14154
  # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#79
@@ -14151,20 +14156,20 @@ class RuboCop::Cop::Layout::RedundantLineBreak < ::RuboCop::Cop::Base
14151
14156
 
14152
14157
  # @return [Boolean]
14153
14158
  #
14154
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#104
14159
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#108
14155
14160
  def single_line_block_chain_enabled?; end
14156
14161
 
14157
14162
  # @return [Boolean]
14158
14163
  #
14159
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#108
14164
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#112
14160
14165
  def suitable_as_single_line?(node); end
14161
14166
 
14162
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#134
14167
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#138
14163
14168
  def to_single_line(source); end
14164
14169
 
14165
14170
  # @return [Boolean]
14166
14171
  #
14167
- # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#129
14172
+ # source://rubocop//lib/rubocop/cop/layout/redundant_line_break.rb#133
14168
14173
  def too_long?(node); end
14169
14174
  end
14170
14175
 
@@ -31015,7 +31020,7 @@ RuboCop::Cop::Style::AndOr::MSG = T.let(T.unsafe(nil), String)
31015
31020
  # bar(**)
31016
31021
  # end
31017
31022
  # @example RedundantBlockArgumentNames: ['blk', 'block', 'proc'] (default)
31018
- # # bad
31023
+ # # bad - But it is good with `EnforcedStyle: explicit` set for `Naming/BlockForwarding`.
31019
31024
  # def foo(&block)
31020
31025
  # bar(&block)
31021
31026
  # end
@@ -31062,6 +31067,11 @@ class RuboCop::Cop::Style::ArgumentsForwarding < ::RuboCop::Cop::Base
31062
31067
  # source://rubocop//lib/rubocop/cop/style/arguments_forwarding.rb#227
31063
31068
  def classify_send_nodes(def_node, send_nodes, referenced_lvars, forwardable_args); end
31064
31069
 
31070
+ # @return [Boolean]
31071
+ #
31072
+ # source://rubocop//lib/rubocop/cop/style/arguments_forwarding.rb#473
31073
+ def explicit_block_name?; end
31074
+
31065
31075
  # source://rubocop//lib/rubocop/cop/style/arguments_forwarding.rb#159
31066
31076
  def extract_forwardable_args(args); end
31067
31077
 
@@ -37493,19 +37503,22 @@ class RuboCop::Cop::Style::HashEachMethods < ::RuboCop::Cop::Base
37493
37503
  include ::RuboCop::Cop::Lint::UnusedArgument
37494
37504
  extend ::RuboCop::Cop::AutoCorrector
37495
37505
 
37496
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#50
37506
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#74
37507
+ def check_unused_block_args(node, key, value); end
37508
+
37509
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#51
37497
37510
  def each_arguments(param0 = T.unsafe(nil)); end
37498
37511
 
37499
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#45
37512
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#46
37500
37513
  def kv_each(param0 = T.unsafe(nil)); end
37501
37514
 
37502
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#55
37515
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#56
37503
37516
  def kv_each_with_block_pass(param0 = T.unsafe(nil)); end
37504
37517
 
37505
37518
  # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#60
37506
37519
  def on_block(node); end
37507
37520
 
37508
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#85
37521
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#95
37509
37522
  def on_block_pass(node); end
37510
37523
 
37511
37524
  # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#60
@@ -37513,55 +37526,63 @@ class RuboCop::Cop::Style::HashEachMethods < ::RuboCop::Cop::Base
37513
37526
 
37514
37527
  private
37515
37528
 
37516
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#159
37529
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#180
37517
37530
  def check_argument(variable); end
37518
37531
 
37519
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#183
37532
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#204
37520
37533
  def correct_args(node, corrector); end
37521
37534
 
37522
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#169
37535
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#190
37523
37536
  def correct_implicit(node, corrector, method_name); end
37524
37537
 
37525
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#174
37538
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#195
37526
37539
  def correct_key_value_each(node, corrector); end
37527
37540
 
37528
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#155
37541
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#176
37529
37542
  def format_message(method_name, current); end
37530
37543
 
37531
37544
  # @return [Boolean]
37532
37545
  #
37533
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#93
37546
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#103
37534
37547
  def handleable?(node); end
37535
37548
 
37536
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#190
37549
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#211
37537
37550
  def kv_range(outer_node); end
37538
37551
 
37539
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#122
37552
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#133
37540
37553
  def message(prefer, method_name, unused_code); end
37541
37554
 
37542
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#128
37555
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#139
37543
37556
  def register_each_args_offense(node, message, prefer, unused_range); end
37544
37557
 
37545
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#99
37558
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#110
37546
37559
  def register_kv_offense(target, method); end
37547
37560
 
37548
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#135
37561
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#146
37549
37562
  def register_kv_with_block_pass_offense(node, target, method); end
37550
37563
 
37551
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#146
37564
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#167
37552
37565
  def root_receiver(node); end
37553
37566
 
37554
37567
  # @return [Boolean]
37555
37568
  #
37556
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#110
37569
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#121
37557
37570
  def unused_block_arg_exist?(node, block_arg); end
37558
37571
 
37559
37572
  # @return [Boolean]
37560
37573
  #
37561
- # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#165
37574
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#157
37575
+ def use_array_converter_method_as_preceding?(node); end
37576
+
37577
+ # @return [Boolean]
37578
+ #
37579
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#186
37562
37580
  def used?(arg); end
37563
37581
  end
37564
37582
 
37583
+ # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#43
37584
+ RuboCop::Cop::Style::HashEachMethods::ARRAY_CONVERTER_METHODS = T.let(T.unsafe(nil), Array)
37585
+
37565
37586
  # source://rubocop//lib/rubocop/cop/style/hash_each_methods.rb#41
37566
37587
  RuboCop::Cop::Style::HashEachMethods::MSG = T.let(T.unsafe(nil), String)
37567
37588
 
@@ -41540,7 +41561,7 @@ class RuboCop::Cop::Style::MutableConstant < ::RuboCop::Cop::Base
41540
41561
  include ::RuboCop::Cop::ConfigurableEnforcedStyle
41541
41562
  extend ::RuboCop::Cop::AutoCorrector
41542
41563
 
41543
- # source://rubocop-sorbet/0.7.6/lib/rubocop/cop/sorbet/mutable_constant_sorbet_aware_behaviour.rb#18
41564
+ # source://rubocop-sorbet/0.7.7/lib/rubocop/cop/sorbet/mutable_constant_sorbet_aware_behaviour.rb#18
41544
41565
  def on_assignment(value); end
41545
41566
 
41546
41567
  # source://rubocop//lib/rubocop/cop/style/mutable_constant.rb#127
@@ -41558,7 +41579,7 @@ class RuboCop::Cop::Style::MutableConstant < ::RuboCop::Cop::Base
41558
41579
  # source://rubocop//lib/rubocop/cop/style/mutable_constant.rb#217
41559
41580
  def splat_value(param0 = T.unsafe(nil)); end
41560
41581
 
41561
- # source://rubocop-sorbet/0.7.6/lib/rubocop/cop/sorbet/mutable_constant_sorbet_aware_behaviour.rb#12
41582
+ # source://rubocop-sorbet/0.7.7/lib/rubocop/cop/sorbet/mutable_constant_sorbet_aware_behaviour.rb#12
41562
41583
  def t_let(param0 = T.unsafe(nil)); end
41563
41584
 
41564
41585
  private
@@ -0,0 +1,216 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `simplecov-html` gem.
5
+ # Please instead update this file by running `bin/tapioca gem simplecov-html`.
6
+
7
+ # source://simplecov-html//lib/simplecov-html.rb#16
8
+ module SimpleCov
9
+ class << self
10
+ # source://simplecov/0.22.0/lib/simplecov.rb#174
11
+ def at_exit_behavior; end
12
+
13
+ # source://simplecov/0.22.0/lib/simplecov.rb#170
14
+ def clear_result; end
15
+
16
+ # source://simplecov/0.22.0/lib/simplecov.rb#86
17
+ def collate(result_filenames, profile = T.unsafe(nil), ignore_timeout: T.unsafe(nil), &block); end
18
+
19
+ # source://simplecov/0.22.0/lib/simplecov.rb#223
20
+ def exit_and_report_previous_error(exit_status); end
21
+
22
+ # source://simplecov/0.22.0/lib/simplecov.rb#200
23
+ def exit_status_from_exception; end
24
+
25
+ # source://simplecov/0.22.0/lib/simplecov.rb#28
26
+ def external_at_exit; end
27
+
28
+ # source://simplecov/0.22.0/lib/simplecov.rb#28
29
+ def external_at_exit=(_arg0); end
30
+
31
+ # source://simplecov/0.22.0/lib/simplecov.rb#28
32
+ def external_at_exit?; end
33
+
34
+ # source://simplecov/0.22.0/lib/simplecov.rb#131
35
+ def filtered(files); end
36
+
37
+ # source://simplecov/0.22.0/lib/simplecov.rb#268
38
+ def final_result_process?; end
39
+
40
+ # source://simplecov/0.22.0/lib/simplecov.rb#142
41
+ def grouped(files); end
42
+
43
+ # source://simplecov/0.22.0/lib/simplecov.rb#162
44
+ def load_adapter(name); end
45
+
46
+ # source://simplecov/0.22.0/lib/simplecov.rb#158
47
+ def load_profile(name); end
48
+
49
+ # source://simplecov/0.22.0/lib/simplecov.rb#24
50
+ def pid; end
51
+
52
+ # source://simplecov/0.22.0/lib/simplecov.rb#24
53
+ def pid=(_arg0); end
54
+
55
+ # source://simplecov/0.22.0/lib/simplecov.rb#213
56
+ def previous_error?(error_exit_status); end
57
+
58
+ # source://simplecov/0.22.0/lib/simplecov.rb#248
59
+ def process_result(result); end
60
+
61
+ # source://simplecov/0.22.0/lib/simplecov.rb#233
62
+ def process_results_and_report_error; end
63
+
64
+ # source://simplecov/0.22.0/lib/simplecov.rb#229
65
+ def ready_to_process_results?; end
66
+
67
+ # source://simplecov/0.22.0/lib/simplecov.rb#101
68
+ def result; end
69
+
70
+ # source://simplecov/0.22.0/lib/simplecov.rb#124
71
+ def result?; end
72
+
73
+ # source://simplecov/0.22.0/lib/simplecov.rb#256
74
+ def result_exit_status(result); end
75
+
76
+ # source://simplecov/0.22.0/lib/simplecov.rb#296
77
+ def round_coverage(coverage); end
78
+
79
+ # source://simplecov/0.22.0/lib/simplecov.rb#186
80
+ def run_exit_tasks!; end
81
+
82
+ # source://simplecov/0.22.0/lib/simplecov.rb#24
83
+ def running; end
84
+
85
+ # source://simplecov/0.22.0/lib/simplecov.rb#24
86
+ def running=(_arg0); end
87
+
88
+ # source://simplecov/0.22.0/lib/simplecov.rb#48
89
+ def start(profile = T.unsafe(nil), &block); end
90
+
91
+ # source://simplecov/0.22.0/lib/simplecov.rb#276
92
+ def wait_for_other_processes; end
93
+
94
+ # source://simplecov/0.22.0/lib/simplecov.rb#285
95
+ def write_last_run(result); end
96
+
97
+ private
98
+
99
+ # source://simplecov/0.22.0/lib/simplecov.rb#399
100
+ def adapt_coverage_result; end
101
+
102
+ # source://simplecov/0.22.0/lib/simplecov.rb#371
103
+ def add_not_loaded_files(result); end
104
+
105
+ # source://simplecov/0.22.0/lib/simplecov.rb#302
106
+ def initial_setup(profile, &block); end
107
+
108
+ # source://simplecov/0.22.0/lib/simplecov.rb#363
109
+ def lookup_corresponding_ruby_coverage_name(criterion); end
110
+
111
+ # source://simplecov/0.22.0/lib/simplecov.rb#425
112
+ def make_parallel_tests_available; end
113
+
114
+ # source://simplecov/0.22.0/lib/simplecov.rb#434
115
+ def probably_running_parallel_tests?; end
116
+
117
+ # source://simplecov/0.22.0/lib/simplecov.rb#388
118
+ def process_coverage_result; end
119
+
120
+ # source://simplecov/0.22.0/lib/simplecov.rb#410
121
+ def remove_useless_results; end
122
+
123
+ # source://simplecov/0.22.0/lib/simplecov.rb#420
124
+ def result_with_not_loaded_files; end
125
+
126
+ # source://simplecov/0.22.0/lib/simplecov.rb#314
127
+ def start_coverage_measurement; end
128
+
129
+ # source://simplecov/0.22.0/lib/simplecov.rb#349
130
+ def start_coverage_with_criteria; end
131
+ end
132
+ end
133
+
134
+ # source://simplecov-html//lib/simplecov-html.rb#17
135
+ module SimpleCov::Formatter
136
+ class << self
137
+ # source://simplecov/0.22.0/lib/simplecov/default_formatter.rb#7
138
+ def from_env(env); end
139
+ end
140
+ end
141
+
142
+ # source://simplecov-html//lib/simplecov-html.rb#18
143
+ class SimpleCov::Formatter::HTMLFormatter
144
+ # @return [HTMLFormatter] a new instance of HTMLFormatter
145
+ #
146
+ # source://simplecov-html//lib/simplecov-html.rb#19
147
+ def initialize; end
148
+
149
+ # @return [Boolean]
150
+ #
151
+ # source://simplecov-html//lib/simplecov-html.rb#38
152
+ def branchable_result?; end
153
+
154
+ # source://simplecov-html//lib/simplecov-html.rb#23
155
+ def format(result); end
156
+
157
+ # @return [Boolean]
158
+ #
159
+ # source://simplecov-html//lib/simplecov-html.rb#45
160
+ def line_status?(source_file, line); end
161
+
162
+ # source://simplecov-html//lib/simplecov-html.rb#34
163
+ def output_message(result); end
164
+
165
+ private
166
+
167
+ # source://simplecov-html//lib/simplecov-html.rb#64
168
+ def asset_output_path; end
169
+
170
+ # source://simplecov-html//lib/simplecov-html.rb#72
171
+ def assets_path(name); end
172
+
173
+ # source://simplecov-html//lib/simplecov-html.rb#97
174
+ def coverage_css_class(covered_percent); end
175
+
176
+ # source://simplecov-html//lib/simplecov-html.rb#93
177
+ def covered_percent(percent); end
178
+
179
+ # Returns a table containing the given source files
180
+ #
181
+ # source://simplecov-html//lib/simplecov-html.rb#84
182
+ def formatted_file_list(title, source_files); end
183
+
184
+ # Returns the html for the given source_file
185
+ #
186
+ # source://simplecov-html//lib/simplecov-html.rb#77
187
+ def formatted_source_file(source_file); end
188
+
189
+ # Return a (kind of) unique id for the source file given. Uses SHA1 on path for the id
190
+ #
191
+ # source://simplecov-html//lib/simplecov-html.rb#118
192
+ def id(source_file); end
193
+
194
+ # source://simplecov-html//lib/simplecov-html.rb#130
195
+ def link_to_source_file(source_file); end
196
+
197
+ # source://simplecov-html//lib/simplecov-html.rb#60
198
+ def output_path; end
199
+
200
+ # source://simplecov-html//lib/simplecov-html.rb#126
201
+ def shortened_filename(source_file); end
202
+
203
+ # source://simplecov-html//lib/simplecov-html.rb#107
204
+ def strength_css_class(covered_strength); end
205
+
206
+ # Returns the an erb instance for the template of given name
207
+ #
208
+ # source://simplecov-html//lib/simplecov-html.rb#56
209
+ def template(name); end
210
+
211
+ # source://simplecov-html//lib/simplecov-html.rb#122
212
+ def timeago(time); end
213
+ end
214
+
215
+ # source://simplecov-html//lib/simplecov-html/version.rb#6
216
+ SimpleCov::Formatter::HTMLFormatter::VERSION = T.let(T.unsafe(nil), String)