spotify-to-mp3 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spotify-to-mp3 (0.5.4)
4
+ spotify-to-mp3 (0.6.0)
5
5
  colorize
6
6
  grooveshark
7
7
  json_pure
@@ -18,14 +18,13 @@ module SpotifyToMp3
18
18
  puts "Searching \"#{track}\" on Grooveshark"
19
19
  grooveshark_track = @grooveshark.get_track(track.grooveshark_query)
20
20
 
21
- print "Found \"#{grooveshark_track}\""
22
21
  if File.exists?(grooveshark_track.filename)
23
22
  # To know about songs no longer in download list
24
23
  FileUtils.touch grooveshark_track.filename
25
24
 
26
- puts ", already exists, skipping"
25
+ puts "Skipping \"#{grooveshark_track}\", it already exists"
27
26
  else
28
- puts ", downloading..."
27
+ puts "Downloading \"#{grooveshark_track}\""
29
28
  @grooveshark.download(grooveshark_track)
30
29
  end
31
30
  rescue Exception => exception # For some reason without the "Exception" it is ignored
@@ -2,7 +2,7 @@ Gem::Specification.new do |gem|
2
2
  gem.name = 'spotify-to-mp3'
3
3
  gem.summary = 'Spotify to MP3'
4
4
  gem.description = 'Download MP3 files of your Spotify tracks from Grooveshark'
5
- gem.version = '0.6.0'
5
+ gem.version = '0.6.1'
6
6
  gem.author = 'Francesc Rosàs'
7
7
  gem.email = 'francescrosasbosque@gmail.com'
8
8
  gem.homepage = 'https://github.com/frosas/spotify-to-mp3'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spotify-to-mp3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-05 00:00:00.000000000 Z
12
+ date: 2014-06-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: grooveshark