commit 6404997fa4ba04bd6d13c8012ec2093f574878b7 parent 147bee213f658406bf25b7a0ef9151559568ac7b Author: lostd <lostd@2f30.org> Date: Tue, 6 May 2014 21:19:53 +0300 Fixes in comments Diffstat:
M | banddump | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/banddump b/banddump @@ -26,10 +26,10 @@ def get_album_data_json page json << '}' break end - if l.match(/^\s*\/\/.*/) # js comment + if l.match(/^\s*\/\/.*/) # js line comment next end - l = l.gsub('" + "', '') + l = l.gsub('" + "', '') # make runtime concat static json << l end end @@ -60,6 +60,6 @@ end puts rel.to_yaml -# output downloads links as separate document +# output download links as separate document puts '---' puts rel['tracklist'].collect {|s| s['dl']}