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 +5 -5
- data/CHANGELOG.md +3 -0
- data/lib/.DS_Store +0 -0
- data/lib/config/activesupport.yml +1 -0
- data/lib/leftovers/value_processors/camelize.rb +1 -1
- data/lib/leftovers/value_processors/deconstantize.rb +1 -1
- data/lib/leftovers/value_processors/demodulize.rb +1 -1
- data/lib/leftovers/value_processors/parameterize.rb +1 -1
- data/lib/leftovers/value_processors/pluralize.rb +1 -1
- data/lib/leftovers/value_processors/singularize.rb +1 -1
- data/lib/leftovers/value_processors/titleize.rb +1 -1
- data/lib/leftovers/value_processors/underscore.rb +1 -1
- data/lib/leftovers/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8bd5a1759f2b1f26facd015571005bb0bbc3a015ad6feeb28a5b79ec368edf73
|
|
4
|
+
data.tar.gz: dbebde9858cd4566a8ca0b2d3770ae97d7904934fe735cce07a287a1c99c55a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e81ea69d2763105ba675d36a60c09b6274c625426f92088c2b560cf2890dffb714d56574af91dc51bbdaa64c6e419fff497415a847dc86c239fc19db3c4b026
|
|
7
|
+
data.tar.gz: db7bf18379a515c2b53bcc912b7e97e7b44e8bbb75ee1f76db2c729f08f6617852df69c0d7dce4a16d284b31026d5d8da07ec1ff5c655693bf0dfc9ea4ebc523
|
data/CHANGELOG.md
CHANGED
data/lib/.DS_Store
ADDED
|
Binary file
|
|
@@ -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
|
data/lib/leftovers/version.rb
CHANGED
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.
|
|
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:
|
|
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
|
-
|
|
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
|