propre 0.0.6 → 0.0.7
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/README.md +4 -5
- data/lib/propre/version.rb +1 -1
- data/lib/propre.rb +6 -2
- 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: a525d3f1c669e6e905087f35b3303eb1674a993a
|
4
|
+
data.tar.gz: 2f802af6f9f660115c7cbb66366f5e13488730c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76b083edd6da46ca4d939fa9293433e86df1fb1f1779a3fd0bd298196e435f17279ffd41d0bae66671df618a23f9d0ce89e39060846d7801593cf50a40d426ec
|
7
|
+
data.tar.gz: ecf7c74f147af117de1b074b1437ae3922bcacd0a41fd5622f35336de0e4271addda85326d4bd298b3c90723e2a1fafc70f04fc6f68cb8d64c013c24a880a9b1
|
data/README.md
CHANGED
@@ -22,6 +22,10 @@ Propre
|
|
22
22
|
|
23
23
|
##Changelog
|
24
24
|
|
25
|
+
### 0.0.7
|
26
|
+
|
27
|
+
- Fix: Sanitize params now work
|
28
|
+
|
25
29
|
### 0.0.6
|
26
30
|
|
27
31
|
- Fix: Resolving dependencies issues
|
@@ -30,11 +34,6 @@ Propre
|
|
30
34
|
|
31
35
|
- Update directory structure to work with RubyGems
|
32
36
|
|
33
|
-
### 0.0.4
|
34
|
-
|
35
|
-
- Add params to consider .dotfile
|
36
|
-
- Add params to sanitize file before search
|
37
|
-
- Bugfix
|
38
37
|
|
39
38
|
Disclaimer
|
40
39
|
----------
|
data/lib/propre/version.rb
CHANGED
data/lib/propre.rb
CHANGED
@@ -66,8 +66,12 @@ class Propre
|
|
66
66
|
|
67
67
|
def sanitize(filename)
|
68
68
|
filename.downcase!
|
69
|
-
filename.gsub!(/\(.*\)/, '')
|
70
|
-
|
69
|
+
filename.gsub!(/\(.*\)/, '')
|
70
|
+
filename.gsub!("_", ' ')
|
71
|
+
filename.gsub!(".", ' ')
|
72
|
+
filename.sub!(/(19|20)\d{2}/, '')
|
73
|
+
filename.strip!
|
74
|
+
warez = ["truefrench","brrip", "ac3-funky", "fansub","bluray","720", "720p", "x264","french", "fr", "divx","hdcam","xvid","appz","bdrip","board","cam","dvd","dvd-r","dvdrip","dupecheck","fake","fs","gamez","hddvd","hddvdrip","hdrip","hdtv","pdtv","internal","int","keygen","leecher","limited","nuke","proper","repack","retail","rip","rip","screener","serial","subforced","hardsub","stv","telecine","telesync","tvrip","unrated","vhsrip","vo","vost","vostfr","workprint","french","wp","subbed","unsubbed", "r5", "r6", "md"]
|
71
75
|
(filename.split - warez).join(' ')
|
72
76
|
end
|
73
77
|
|