musicfix 0.1.4 → 0.1.5
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/CHANGELOG +3 -0
- data/bin/musicfix +2 -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: 9b6c21ec0e1a27c4204d70c304f94b98f2992197
|
|
4
|
+
data.tar.gz: 715fc3b30320e2e58c9260e1c0d86728b94a24f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84809c52ad13adf4297ec81270a5e1f8b6274d08089a8918c9dc26aaa5576a1a12c7c589f6e50b8207e6b58d6a09e7ee7c4fb97f1a7ac5edc34ce9ad1629beb6
|
|
7
|
+
data.tar.gz: a8cf51d8efc196aa9bfd3c6aa205870287814cb85badf7c16b2e9f6b02fd5026f4db34ea3d9a987230d7d2db03930976e6e4e34f4da12b45dcb2b6513287b3cf
|
data/CHANGELOG
CHANGED
data/bin/musicfix
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# encoding: utf-8
|
|
3
3
|
|
|
4
|
-
# $Id: musicfix,v 1.
|
|
4
|
+
# $Id: musicfix,v 1.53 2013/11/11 14:46:42 lostd Exp $
|
|
5
5
|
|
|
6
6
|
require 'rubygems'
|
|
7
7
|
require 'fileutils'
|
|
@@ -218,7 +218,7 @@ else
|
|
|
218
218
|
Headers))['resp']['master']
|
|
219
219
|
end
|
|
220
220
|
# Tracklist can contain dummy header tracks, strip them
|
|
221
|
-
tl = r['tracklist'].select {|t| t['position']}
|
|
221
|
+
tl = r['tracklist'].select {|t| t['position'] != ''}
|
|
222
222
|
# Apply tracks filter if given
|
|
223
223
|
if tracks then
|
|
224
224
|
pl = mkposlist tracks
|