rhapsody 0.0.4 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 21c0400f5ed4183886d58150c05b430c3e987875
4
- data.tar.gz: ab11f7fcdadc4b6c86dcf202e2a62279b8e1fef2
3
+ metadata.gz: 8088ac86323d36432bb5370890e15953b73df4c0
4
+ data.tar.gz: 52003fac1439f284a6527d2c70af351de262f5f2
5
5
  SHA512:
6
- metadata.gz: 4b2d12d51b2160b42c5d38b7d81d2afaca2e85c9e505f0a2bbe4bd6d4a7bcc2184cd67855ef505119a0d04958dd0b8ab4bcfb86c708a5e19cf435226fa4dbea5
7
- data.tar.gz: 82916240d49d6ff5854b9ad2bc5a44a801d0637f0a014cdd414c6e1589f2437568fa0bbc8f22fbde8a2d24f8c6da167e98e9d6bb3cefa44a8a9e440635df9b51
6
+ metadata.gz: 6d2f39cc994546af711edc463cedb25897d7ec79c3e7686c42c776376a7bf3b9e421e5547d4c6264e7381b447667e61a74c850d1e2f73ad40678cf0dd5c4af2f
7
+ data.tar.gz: 2c5ee98b57d719a520bb8c2e5507a48f0327a3b99d1326462c1c9b2d0f7757154fdf3678fe2d851da531455c727d94a7510e045f45df3b4f638c4d54331ea364
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rhapsody (0.0.4)
4
+ rhapsody (0.0.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -14,10 +14,10 @@ class Rhapsody::Client
14
14
  end
15
15
 
16
16
  def initialize(options)
17
- @api_key = options['api_key']
18
- @api_secret = options['api_secret']
19
- @auth_code = options['auth_code']
20
- @redirect_url = options['redirect_url']
17
+ @api_key = options[:api_key]
18
+ @api_secret = options[:api_secret]
19
+ @auth_code = options[:auth_code]
20
+ @redirect_url = options[:redirect_url]
21
21
  end
22
22
 
23
23
  def connect
@@ -1,3 +1,3 @@
1
1
  module Rhapsody
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -11,6 +11,6 @@ describe Rhapsody do
11
11
  end
12
12
 
13
13
  it 'checks version' do
14
- expect(Rhapsody::VERSION).to eql('0.0.4')
14
+ expect(Rhapsody::VERSION).to eql('0.0.5')
15
15
  end
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhapsody
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Kim