leftovers 0.5.1 → 0.5.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 03a9797868cc444642bc0d475de4bd067a344891
4
- data.tar.gz: fa5961bbcbb420c1a4a1159215e5df64da163b71
2
+ SHA256:
3
+ metadata.gz: 0d697aa7197a87a0e3cc99124031957ab4cc602c89afd6d0369be3fffdef3ba0
4
+ data.tar.gz: c782e42dc2b5916160213fe22a7eb3c1560930c7e21f6f72489f10d0a03ff612
5
5
  SHA512:
6
- metadata.gz: 5c6d93694df1819e9f464b184b64ebb4ce53fe8b73558c59e286d21fae4d349bed14e89c57c4f6f7c38a7c8ec51669cd6ab909d09f6ec7384f197725846c5092
7
- data.tar.gz: 2955b7635cf34fccbaa06e3555ec0210a2a9fc00afa116c7a9e412d703c22a6ad3e563021ace19fec7cd96d13ec5d3222515355f0794a39206deab64ac1297bb
6
+ metadata.gz: c63edb11d4ed98ab23402f4a7ace623a6a364a5f39218076a5713034879fd98ed90fe024badaca2ac26562e94bbd0fde690f932e185de88a93bff1dca3fb0ce4
7
+ data.tar.gz: daae5206e9b217ce77201347c504255834aba552a8566c04ecfd224105577197c9d62415f7dc799727842c136d9e2c00e2fe90de8115c95fd4c176068cbcb313
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # 0.5.5
2
+ - Fix rails resource/resources method signatures
3
+
4
+ # 0.5.4
5
+ - Add support for slim templates #13 - thanks @veganstraightedge
6
+ - fix the #how-to-resolve link #11 - thanks @veganstraightedge
7
+
8
+ # v0.5.3
9
+ - fix incompatibility with activesupport 7.
10
+
11
+ # v0.5.2
12
+ - allow config entries to have duplicates (especially as --write-todo) can write a file with duplicates)
13
+
1
14
  # v0.5.1
2
15
  - fixed a bug with the erb parsing where it was incorrectly compiling comments:
3
16
  ```
data/README.md CHANGED
@@ -57,7 +57,7 @@ Not directly called at all:
57
57
  lib/hello_world.rb:6:6 generated_method= attr_accessor :generated_method
58
58
  lib/hello_world.rb:6:6 generated_method attr_accessor :generated_method
59
59
 
60
- how to resolve: https://github.com/robotdana/leftovers/tree/main/Readme.md#how_to_resolve
60
+ how to resolve: https://github.com/robotdana/leftovers/tree/main/Readme.md#how-to-resolve
61
61
  ```
62
62
 
63
63
  if there is an overwhelming number of results, try using [`--write-todo`](#write-todo)
@@ -163,7 +163,7 @@ see the [built in config files](https://github.com/robotdana/leftovers/tree/main
163
163
 
164
164
  Add the method/pattern to the `dynamic:` list with `skip: true` in the `.leftovers.yml`, or add an inline comment with the list of possibilities `# leftovers:call my_method_1, my_method_2`.
165
165
  - Leftovers compares by name only, so multiple definitions with the same name will count as used even if only one is.
166
- - haml & erb line and column numbers will be wrong as the files have to be precompiled before checking.
166
+ - haml, slim & erb line and column numbers will be wrong as the files have to be precompiled before checking.
167
167
 
168
168
  ## Other tools
169
169
 
@@ -7,6 +7,7 @@ Its presence is optional and all of these settings are optional.
7
7
  - [`exclude_paths:`](#exclude_paths)
8
8
  - [`test_paths:`](#test_paths)
9
9
  - [`haml_paths:`](#haml_paths)
10
+ - [`slim_paths:`](#slim_paths)
10
11
  - [`erb_paths:`](#erb_paths)
11
12
  - [`requires:`](#requires)
12
13
  - [`gems:`](#gems)
@@ -92,6 +93,18 @@ haml_paths:
92
93
 
93
94
  Arrays are not necessary for single values. `*.haml` is recognized by default
94
95
 
96
+ ## `slim_paths:`
97
+
98
+ list filenames/paths of test directories that are in the slim format
99
+ Defined using the [.gitignore pattern format](https://git-scm.com/docs/gitignore#_pattern_format)
100
+
101
+ ```yml
102
+ slim_paths:
103
+ - '*.slim'
104
+ ```
105
+
106
+ Arrays are not necessary for single values. `*.slim` is recognized by default
107
+
95
108
  ## `erb_paths:`
96
109
 
97
110
  list filenames/paths of test directories that are in the erb format
data/leftovers.gemspec CHANGED
@@ -42,6 +42,7 @@ Gem::Specification.new do |spec|
42
42
  spec.add_development_dependency 'rubocop-rspec', '~> 1.44.1'
43
43
  spec.add_development_dependency 'simplecov', '>= 0.18.5'
44
44
  spec.add_development_dependency 'simplecov-console'
45
+ spec.add_development_dependency 'slim'
45
46
  spec.add_development_dependency 'timecop'
46
47
  spec.add_development_dependency 'tty_string', '>= 0.2.1'
47
48
 
data/lib/.DS_Store ADDED
Binary file
@@ -73,8 +73,12 @@ dynamic:
73
73
  - name:
74
74
  - resource
75
75
  - resources
76
+ has_argument: 0
76
77
  calls:
77
78
  - argument: only
79
+ - argument: only
80
+ nested:
81
+ argument: '*'
78
82
  - argument: controller
79
83
  camelize: true
80
84
  add_suffix: Controller
@@ -82,6 +86,7 @@ dynamic:
82
86
  - name:
83
87
  - resource
84
88
  - resources
89
+ has_argument: 0
85
90
  unless:
86
91
  has_argument:
87
92
  - at: only
@@ -96,6 +101,7 @@ dynamic:
96
101
  - name:
97
102
  - resource
98
103
  - resources
104
+ has_argument: 0
99
105
  unless:
100
106
  has_argument:
101
107
  - at: only
@@ -110,6 +116,7 @@ dynamic:
110
116
  - name:
111
117
  - resource
112
118
  - resources
119
+ has_argument: 0
113
120
  unless:
114
121
  has_argument:
115
122
  - at: only
@@ -124,6 +131,7 @@ dynamic:
124
131
  - name:
125
132
  - resource
126
133
  - resources
134
+ has_argument: 0
127
135
  unless:
128
136
  has_argument:
129
137
  - at: only
@@ -138,6 +146,7 @@ dynamic:
138
146
  - name:
139
147
  - resource
140
148
  - resources
149
+ has_argument: 0
141
150
  unless:
142
151
  has_argument:
143
152
  - at: only
@@ -152,6 +161,7 @@ dynamic:
152
161
  - name:
153
162
  - resource
154
163
  - resources
164
+ has_argument: 0
155
165
  unless:
156
166
  has_argument:
157
167
  - at: only
@@ -165,6 +175,7 @@ dynamic:
165
175
  - value: destroy
166
176
  - name:
167
177
  - resources
178
+ - resource
168
179
  - controller
169
180
  - namespace
170
181
  calls:
@@ -1,4 +1,5 @@
1
1
  requires:
2
+ - 'active_support'
2
3
  - 'active_support/core_ext/string'
3
4
  - 'active_support/inflections'
4
5
  - './config/initializers/inflections'
data/lib/config/ruby.yml CHANGED
@@ -20,6 +20,9 @@ erb_paths:
20
20
  haml_paths:
21
21
  - '*.haml'
22
22
 
23
+ slim_paths:
24
+ - '*.slim'
25
+
23
26
  keep:
24
27
  - initialize # called by new
25
28
  - inspect # called by repl, to_s
@@ -0,0 +1,4 @@
1
+ include_paths:
2
+ - '*.slim'
3
+ slim_paths:
4
+ - '*.slim'
@@ -36,6 +36,10 @@ module Leftovers
36
36
  @haml_paths ||= Array(yaml[:haml_paths])
37
37
  end
38
38
 
39
+ def slim_paths
40
+ @slim_paths ||= Array(yaml[:slim_paths])
41
+ end
42
+
39
43
  def erb_paths
40
44
  @erb_paths ||= Array(yaml[:erb_paths])
41
45
  end
@@ -36,8 +36,7 @@ module Leftovers
36
36
  {
37
37
  'type' => 'array',
38
38
  'items' => { '$ref' => '#/definitions/string' },
39
- 'minItems' => 1,
40
- 'uniqueItems' => true
39
+ 'minItems' => 1
41
40
  },
42
41
  { '$ref' => '#/definitions/string' }
43
42
  ]
@@ -65,8 +64,7 @@ module Leftovers
65
64
  {
66
65
  'type' => 'array',
67
66
  'items' => { '$ref' => '#/definitions/name' },
68
- 'minItems' => 1,
69
- 'uniqueItems' => true
67
+ 'minItems' => 1
70
68
  },
71
69
  { '$ref' => '#/definitions/name' }
72
70
  ]
@@ -84,8 +82,7 @@ module Leftovers
84
82
  {
85
83
  'type' => 'array',
86
84
  'items' => { '$ref' => '#/definitions/argumentPosition' },
87
- 'minItems' => 1,
88
- 'uniqueItems' => true
85
+ 'minItems' => 1
89
86
  }
90
87
  ]
91
88
  },
@@ -99,8 +96,7 @@ module Leftovers
99
96
  {
100
97
  'type' => 'array',
101
98
  'items' => { '$ref' => '#/definitions/valueType' },
102
- 'minItems' => 1,
103
- 'uniqueItems' => true
99
+ 'minItems' => 1
104
100
  }
105
101
  ]
106
102
  },
@@ -153,8 +149,7 @@ module Leftovers
153
149
  {
154
150
  'type' => 'array',
155
151
  'items' => { '$ref' => '#/definitions/hasValue' },
156
- 'minItems' => 1,
157
- 'uniqueItems' => true
152
+ 'minItems' => 1
158
153
  }
159
154
  ]
160
155
  },
@@ -184,8 +179,7 @@ module Leftovers
184
179
  {
185
180
  'type' => 'array',
186
181
  'items' => { '$ref' => '#/definitions/hasArgument' },
187
- 'minItems' => 1,
188
- 'uniqueItems' => true
182
+ 'minItems' => 1
189
183
  }
190
184
  ]
191
185
  },
@@ -298,8 +292,7 @@ module Leftovers
298
292
  {
299
293
  'type' => 'array',
300
294
  'items' => { '$ref' => '#/definitions/transform' },
301
- 'minItems' => 1,
302
- 'uniqueItems' => true
295
+ 'minItems' => 1
303
296
  }
304
297
  ]
305
298
  },
@@ -314,8 +307,7 @@ module Leftovers
314
307
  {
315
308
  'type' => 'array',
316
309
  'items' => { '$ref' => '#/definitions/keyword' },
317
- 'minItems' => 1,
318
- 'uniqueItems' => true
310
+ 'minItems' => 1
319
311
  }
320
312
  ]
321
313
  },
@@ -384,8 +376,7 @@ module Leftovers
384
376
  {
385
377
  'type' => 'array',
386
378
  'items' => { '$ref' => '#/definitions/action' },
387
- 'minItems' => 1,
388
- 'uniqueItems' => true
379
+ 'minItems' => 1
389
380
  }
390
381
  ]
391
382
  },
@@ -415,8 +406,7 @@ module Leftovers
415
406
  {
416
407
  'type' => 'array',
417
408
  'items' => { '$ref' => '#/definitions/ruleMatcher' },
418
- 'minItems' => 1,
419
- 'uniqueItems' => true
409
+ 'minItems' => 1
420
410
  },
421
411
  { '$ref' => '#/definitions/ruleMatcher' }
422
412
  ]
@@ -481,8 +471,7 @@ module Leftovers
481
471
  {
482
472
  'type' => 'array',
483
473
  'items' => { '$ref' => '#/definitions/dynamic' },
484
- 'minItems' => 1,
485
- 'uniqueItems' => true
474
+ 'minItems' => 1
486
475
  },
487
476
  { '$ref' => '#/definitions/dynamic' }
488
477
  ]
@@ -517,8 +506,7 @@ module Leftovers
517
506
  {
518
507
  'type' => 'array',
519
508
  'items' => { '$ref' => '#/definitions/keepTestOnly' },
520
- 'minItems' => 1,
521
- 'uniqueItems' => true
509
+ 'minItems' => 1
522
510
  },
523
511
  { '$ref' => '#/definitions/keepTestOnly' }
524
512
  ]
@@ -529,6 +517,7 @@ module Leftovers
529
517
  'exclude_paths' => { '$ref' => '#/definitions/stringList' },
530
518
  'test_paths' => { '$ref' => '#/definitions/stringList' },
531
519
  'haml_paths' => { '$ref' => '#/definitions/stringList' },
520
+ 'slim_paths' => { '$ref' => '#/definitions/stringList' },
532
521
  'erb_paths' => { '$ref' => '#/definitions/stringList' },
533
522
  'requires' => { '$ref' => '#/definitions/stringList' },
534
523
  'gems' => { '$ref' => '#/definitions/stringList' },
data/lib/leftovers/erb.rb CHANGED
@@ -4,7 +4,7 @@ require 'erb'
4
4
 
5
5
  module Leftovers
6
6
  class ERB < ::ERB::Compiler
7
- def self.precompile(erb)
7
+ def self.precompile(erb, _name)
8
8
  @compiler ||= new('-')
9
9
  @compiler.compile(erb).first
10
10
  end
@@ -15,12 +15,18 @@ module Leftovers
15
15
  end
16
16
 
17
17
  def ruby
18
+ precompiler&.precompile(read, self) || read
19
+ end
20
+
21
+ private
22
+
23
+ def precompiler
18
24
  if Leftovers.config.haml_paths.allowed?(relative_path)
19
- ::Leftovers::Haml.precompile(read, self)
25
+ ::Leftovers::Haml
26
+ elsif Leftovers.config.slim_paths.allowed?(relative_path)
27
+ ::Leftovers::Slim
20
28
  elsif Leftovers.config.erb_paths.allowed?(relative_path)
21
- ::Leftovers::ERB.precompile(read)
22
- else
23
- read
29
+ ::Leftovers::ERB
24
30
  end
25
31
  end
26
32
  end
@@ -37,14 +37,22 @@ module Leftovers
37
37
  Leftovers::Config.new(:'.leftovers_todo.yml', path: Leftovers.pwd + '.leftovers_todo.yml')
38
38
  end
39
39
 
40
- def unmemoize # rubocop:disable Metrics/CyclomaticComplexity
41
- remove_instance_variable(:@exclude_paths) if defined?(@exclude_paths)
42
- remove_instance_variable(:@include_paths) if defined?(@include_paths)
43
- remove_instance_variable(:@test_paths) if defined?(@test_paths)
44
- remove_instance_variable(:@haml_paths) if defined?(@haml_paths)
45
- remove_instance_variable(:@erb_paths) if defined?(@erb_paths)
46
- remove_instance_variable(:@dynamic) if defined?(@dynamic)
47
- remove_instance_variable(:@keep) if defined?(@keep)
40
+ MEMOIZED_IVARS = %i{
41
+ @exclude_paths
42
+ @include_paths
43
+ @test_paths
44
+ @haml_paths
45
+ @slim_paths
46
+ @erb_paths
47
+ @dynamic
48
+ @keep
49
+ @test_only
50
+ }.freeze
51
+
52
+ def unmemoize
53
+ MEMOIZED_IVARS.each do |ivar|
54
+ remove_instance_variable(ivar) if instance_variable_get(ivar)
55
+ end
48
56
  end
49
57
 
50
58
  def exclude_paths
@@ -71,6 +79,14 @@ module Leftovers
71
79
  )
72
80
  end
73
81
 
82
+ def slim_paths
83
+ @slim_paths ||= FastIgnore.new(
84
+ include_rules: @configs.flat_map(&:slim_paths),
85
+ gitignore: false,
86
+ root: Leftovers.pwd
87
+ )
88
+ end
89
+
74
90
  def erb_paths
75
91
  @erb_paths ||= FastIgnore.new(
76
92
  include_rules: @configs.flat_map(&:erb_paths),
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Leftovers
4
+ module Slim
5
+ module_function
6
+
7
+ def precompile(file, name)
8
+ return '' unless Leftovers.try_require('slim', message: <<~MESSAGE) # rubocop:disable Layout/EmptyLineAfterGuardClause
9
+ Skipped parsing #{name.relative_path}, because the slim gem was not available
10
+ `gem install slim`
11
+ MESSAGE
12
+
13
+ begin
14
+ ::Slim::Engine.new(file: file).call(file)
15
+ rescue ::Slim::Parser::SyntaxError => e
16
+ Leftovers.warn "#{e.class}: \"#{e.error}\" #{name.relative_path}:#{e.lineno}:#{e.column}"
17
+ ''
18
+ end
19
+ end
20
+ end
21
+ end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#camelize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#deconstantize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#demodulize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#parameterize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#pluralize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#singularize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#titleize method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -16,7 +16,7 @@ module Leftovers
16
16
  rescue NoMethodError
17
17
  Leftovers.error <<~MESSAGE
18
18
  Tried using the String#underscore method, but the activesupport gem was not available and/or not required
19
- `gem install activesupport`, and/or add `requires: 'active_support/core_ext/string'` to your .leftovers.yml
19
+ `gem install activesupport`, and/or add `requires: ['active_support', 'active_support/core_ext/string']` to your .leftovers.yml
20
20
  MESSAGE
21
21
  end
22
22
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leftovers
4
- VERSION = '0.5.1'
4
+ VERSION = '0.5.5'
5
5
  end
data/lib/leftovers.rb CHANGED
@@ -24,6 +24,7 @@ module Leftovers # rubocop:disable Metrics/ModuleLength
24
24
  autoload(:ProcessorBuilders, "#{__dir__}/leftovers/processor_builders")
25
25
  autoload(:RakeTask, "#{__dir__}/leftovers/rake_task")
26
26
  autoload(:Reporter, "#{__dir__}/leftovers/reporter")
27
+ autoload(:Slim, "#{__dir__}/leftovers/slim")
27
28
  autoload(:TodoReporter, "#{__dir__}/leftovers/todo_reporter")
28
29
  autoload(:DynamicProcessors, "#{__dir__}/leftovers/dynamic_processors")
29
30
  autoload(:ValueProcessors, "#{__dir__}/leftovers/value_processors")
@@ -93,7 +94,7 @@ module Leftovers # rubocop:disable Metrics/ModuleLength
93
94
  end
94
95
 
95
96
  def resolution_instructions_link
96
- "https://github.com/robotdana/leftovers/tree/v#{Leftovers::VERSION}/README.md#how_to_resolve"
97
+ "https://github.com/robotdana/leftovers/tree/v#{Leftovers::VERSION}/README.md#how-to-resolve"
97
98
  end
98
99
 
99
100
  def warn(message)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leftovers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dana Sherson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2022-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -178,6 +178,20 @@ dependencies:
178
178
  - - ">="
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: slim
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
181
195
  - !ruby/object:Gem::Dependency
182
196
  name: timecop
183
197
  requirement: !ruby/object:Gem::Requirement
@@ -291,6 +305,7 @@ files:
291
305
  - docs/Configuration.md
292
306
  - exe/leftovers
293
307
  - leftovers.gemspec
308
+ - lib/.DS_Store
294
309
  - lib/config/actioncable.yml
295
310
  - lib/config/actionmailer.yml
296
311
  - lib/config/actionpack.yml
@@ -322,6 +337,7 @@ files:
322
337
  - lib/config/selenium-webdriver.yml
323
338
  - lib/config/sidekiq.yml
324
339
  - lib/config/simplecov.yml
340
+ - lib/config/slim.yml
325
341
  - lib/config/will_paginate.yml
326
342
  - lib/leftovers.rb
327
343
  - lib/leftovers/ast.rb
@@ -406,6 +422,7 @@ files:
406
422
  - lib/leftovers/processor_builders/value.rb
407
423
  - lib/leftovers/rake_task.rb
408
424
  - lib/leftovers/reporter.rb
425
+ - lib/leftovers/slim.rb
409
426
  - lib/leftovers/todo_reporter.rb
410
427
  - lib/leftovers/value_processors.rb
411
428
  - lib/leftovers/value_processors/add_dynamic_prefix.rb
@@ -465,8 +482,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
465
482
  - !ruby/object:Gem::Version
466
483
  version: '0'
467
484
  requirements: []
468
- rubyforge_project:
469
- rubygems_version: 2.6.13
485
+ rubygems_version: 3.2.15
470
486
  signing_key:
471
487
  specification_version: 4
472
488
  summary: Find unused methods and classes/modules