cb_nitride 0.1.39 → 0.1.40
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 +4 -4
- data/lib/cb_nitride/category_sorter.rb +2 -1
- data/lib/cb_nitride/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79f96ec8ab7b58b239db2e9ee08a30118560c1b4
|
|
4
|
+
data.tar.gz: b2d40dbe49f036a99d7cf5b4a36e6b97f77cef3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e4b344516d9fdb1a28cf5ad44bf936cd987ba9458ea381efd149a9c6b97b9a56f52c0089249a3aa6bdbcdcf27c472b63914de12b03e41c1d02abf6c77502a7a
|
|
7
|
+
data.tar.gz: 50d10cddee98128cd4ed411894a41a3c87373b207b31c5858c1f80ec89b2dfb14dd7be61380bdfc145c1339e64432ba853fe673ddb655e9bb3d94ea9fd7d545d
|
|
@@ -25,8 +25,8 @@ module CbNitride
|
|
|
25
25
|
@is_variant = true if hash[:title].include? "COMBO PACK"
|
|
26
26
|
@is_variant = true if hash[:title].include? "STANDARD ED"
|
|
27
27
|
@is_variant = true if hash[:title].match(/(CVR)\s[B-Z]/)
|
|
28
|
+
@is_variant = true if specific_issue_patterns(hash[:title])
|
|
28
29
|
@is_variant = false if @is_variant.nil?
|
|
29
|
-
@is_variant = false if specific_issue_patterns(hash[:title])
|
|
30
30
|
return @is_variant
|
|
31
31
|
end
|
|
32
32
|
|
|
@@ -81,6 +81,7 @@ module CbNitride
|
|
|
81
81
|
title.split("#")[1].match(/\d\D+(PTG)/) ||
|
|
82
82
|
title.split('#')[1].match(/(REORDER ED)/) ||
|
|
83
83
|
title.split('#')[1].match(/(SKETCH ED)/) ||
|
|
84
|
+
title.split('#')[1].match(/(FOIL CVR)/) ||
|
|
84
85
|
title.split("#")[1].include?("VAR INCENTIVE CVR") ||
|
|
85
86
|
title.split("#")[1].include?("DIRECT MARKET CVR") ||
|
|
86
87
|
title.split("#")[1].include?("MAIN CVRS")
|
data/lib/cb_nitride/version.rb
CHANGED