musix_match 0.1.14 → 0.1.15

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.
@@ -25,7 +25,6 @@ module MusixMatch
25
25
 
26
26
  def self.get(method, params={})
27
27
  raise APIKeyNotSpecifiedException.new('You must specify the API key. MusixMatch::API::Base.api_key = "YOUR_API_KEY"') if api_key.nil?
28
- puts url_for(method, params)
29
28
  response = perform_get_request(url_for(method, params))
30
29
  parsed_response = case response.parsed_response
31
30
  when Hash
@@ -3,7 +3,6 @@ module MusixMatch
3
3
  class Search < Base
4
4
  def search_lyrics(options={})
5
5
  response = get('lyrics.search', options)
6
- puts response.inspect
7
6
  LyricsSearchResult.new(response)
8
7
  end
9
8
 
@@ -28,7 +28,6 @@ module MusixMatch
28
28
  end
29
29
 
30
30
  def parse_response_body(response)
31
- puts response.inspect
32
31
  response['message']['body']['lyrics_list'].each do |obj|
33
32
  @lyrics_list << Models::Lyrics.new(obj['lyrics'])
34
33
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: musix_match
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.14
5
+ version: 0.1.15
6
6
  platform: ruby
7
7
  authors:
8
8
  - Andrea Franz