leftovers 0.5.2 → 0.5.3

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: 0ca0079209fd4a81f12410ab2b9ccc3ac8eeb176
4
- data.tar.gz: 1c4cca1116e1cb07b630bf97742da022a2fc8362
2
+ SHA256:
3
+ metadata.gz: 8bd5a1759f2b1f26facd015571005bb0bbc3a015ad6feeb28a5b79ec368edf73
4
+ data.tar.gz: dbebde9858cd4566a8ca0b2d3770ae97d7904934fe735cce07a287a1c99c55a3
5
5
  SHA512:
6
- metadata.gz: 64427530e7fc79d4f683adbbb5eb3df1b6e7693171ab2debd2b2e5b32b394bf7185e2a742b94524a08b130c9eb76ed02d786020acfdffd52a306e7588fc3eff3
7
- data.tar.gz: 1aa3183b82769536d95738f1271f0d7581622fc5607dc48a40788151228151f1e1117ef75b6520db5ca28389b31ddefde19b675d6884e092e405ce123785b188
6
+ metadata.gz: 5e81ea69d2763105ba675d36a60c09b6274c625426f92088c2b560cf2890dffb714d56574af91dc51bbdaa64c6e419fff497415a847dc86c239fc19db3c4b026
7
+ data.tar.gz: db7bf18379a515c2b53bcc912b7e97e7b44e8bbb75ee1f76db2c729f08f6617852df69c0d7dce4a16d284b31026d5d8da07ec1ff5c655693bf0dfc9ea4ebc523
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v0.5.3
2
+ - fix incompatibility with activesupport 7.
3
+
1
4
  # v0.5.2
2
5
  - allow config entries to have duplicates (especially as --write-todo) can write a file with duplicates)
3
6
 
data/lib/.DS_Store ADDED
Binary file
@@ -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'
@@ -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.2'
4
+ VERSION = '0.5.3'
5
5
  end
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.2
4
+ version: 0.5.3
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-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -291,6 +291,7 @@ files:
291
291
  - docs/Configuration.md
292
292
  - exe/leftovers
293
293
  - leftovers.gemspec
294
+ - lib/.DS_Store
294
295
  - lib/config/actioncable.yml
295
296
  - lib/config/actionmailer.yml
296
297
  - lib/config/actionpack.yml
@@ -465,8 +466,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
465
466
  - !ruby/object:Gem::Version
466
467
  version: '0'
467
468
  requirements: []
468
- rubyforge_project:
469
- rubygems_version: 2.6.13
469
+ rubygems_version: 3.2.15
470
470
  signing_key:
471
471
  specification_version: 4
472
472
  summary: Find unused methods and classes/modules