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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 311bcbda124ab2d3f73f49e4675348748122d877
4
- data.tar.gz: 137481c499811a048a915c35aa673e8ec3a46914
3
+ metadata.gz: a525d3f1c669e6e905087f35b3303eb1674a993a
4
+ data.tar.gz: 2f802af6f9f660115c7cbb66366f5e13488730c0
5
5
  SHA512:
6
- metadata.gz: 01302105343865b99505ddb8a1eada474f04ecd0d815cf6260f4fbbfe24fc7cef4efce78d76864457674a05d3e60361b53d71a58e854a11f5ff0f5e2265c86d8
7
- data.tar.gz: 94ae9069c65170f08056766ddaf0c718f2d58e7b665703e182ade5bcd283eb82777ea0ee1c5e4633e4d111875b09ea6eaee9d847857cda00da8cd9f5c4608059
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
  ----------
@@ -1,3 +1,3 @@
1
1
  module Propre
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
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!(/\(.*\)/, '').gsub!("_", ' ').gsub!(".", ' ').strip!
70
- warez = ["truefrench","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"]
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propre
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Yadomi