spotify-client 0.0.1 → 0.0.2

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: 8369fd39e93441e6443010c7f9f4d3795fbef619
4
- data.tar.gz: b8202b9abf4963f52ca4b0be762cc586a681ac21
3
+ metadata.gz: dc71af94660fd73b0624feb29b4542890a5fa7de
4
+ data.tar.gz: cd8443b6b50843c77301a19cb503f2f98f4dddf4
5
5
  SHA512:
6
- metadata.gz: 4f3bb1b197542fca61f12021e919e48626893c96b11987123c4232b1d7831ae78d679d706947fb787e34dc6a4200c7be5398335dc4f132e02c3fa81d3caa8f97
7
- data.tar.gz: ed067b3f2c46a1aa0fc52ee959dea624fd19924938276d052a2949da17829489ac814f1f2ec1fbe4ebb4e9f7dd7e3d8688ec07ff8adf0e8cd643278e547d62d4
6
+ metadata.gz: b1f20abaa5c18114d2d19c3524ca07ef451c1c82129d5b3d7addf4190ba9a8d0a11818db43c4eb7fa632d3e745bf1727bdc145b6ee5e05b1fa09ea8fc145d137
7
+ data.tar.gz: 9e943f920ff8e05926517a37bb176c9ff73c9027ddafadd218cb8a71d611fdd0ac4927efbcb14e81b223343587a013504c8606ad1743e5041ac8677a196b9bdd
@@ -3,7 +3,7 @@ module Spotify
3
3
  class Error < StandardError; end
4
4
  class AuthenticationError < Error; end
5
5
  class HTTPError < Error; end
6
- class InsufficientClienScopeError < Error; end
6
+ class InsufficientClientScopeError < Error; end
7
7
  class BadRequest < Error; end
8
8
  class ResourceNotFound < Error; end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Spotify
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
@@ -174,7 +174,7 @@ module Spotify
174
174
  rescue Excon::Errors::BadRequest => exception
175
175
  raise(BadRequest, "Error: #{exception.message}")
176
176
  rescue Excon::Errors::Forbidden => exception
177
- raise(InsufficientClienScopeError, "Error: #{exception.message}")
177
+ raise(InsufficientClientScopeError, "Error: #{exception.message}")
178
178
  rescue Excon::Errors::Unauthorized => exception
179
179
  raise(AuthenticationError, "Error: #{exception.message}")
180
180
  rescue Excon::Errors::Error => exception
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spotify-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claudio Poli