songdrop 0.1.2 → 0.1.3

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: ad1635e165e3d9d321d7c04590e52d06ad9786fb
4
- data.tar.gz: a2254f352f6d67f51a6f21d0b97ad466a8d28af6
3
+ metadata.gz: e1d26b0298ab987e8c13dcedc093a362952556c8
4
+ data.tar.gz: 4962b9cac1f1795c9cd4b02ddaccc3eaa280e7c2
5
5
  SHA512:
6
- metadata.gz: 3fdf8914e9901929622dc9a41986f74e1ab9421dd0f7ff11c17abfe3a185e5d68bcc3b686575d9c39d2d89ee19cdd68087044ddf3e574c7b3ff58eae87a106d9
7
- data.tar.gz: 73ab81fcc7f07d05bddbb28617280296d353b20b757e2ca3b9c6f4951013d37c67f0822805d1438c1510f52dd4b597bac7ddb2bac52e32cebe9084820dadade4
6
+ metadata.gz: 38b0930b2acbbb230ab3677b3c78004b7b3e60f9330a133cf3f06de2e2da8481aedcbe7e57db11cac83a175d522067fee912977a5939497fb21c85412e4fbf83
7
+ data.tar.gz: 5a54528f834d61f0c507400184c17537fe0db7aa5e26e251b81b43f649a60f7aa794090675b3a8015bff0bbb2fb3b2fa8a86bfae89fed46818f554efb87bfa97
@@ -47,12 +47,14 @@ module Songdrop
47
47
 
48
48
  def handle_response(response, error, &block)
49
49
  target = response || error
50
+ res = nil
50
51
  JSON.parse(target) do |obj|
51
52
  res = Parser.parse(obj)
52
53
  res = res.first if res.is_a? Array and res.size == 1
53
54
  block.call res if block
54
55
  res
55
56
  end
57
+ res
56
58
  end
57
59
 
58
60
  end
@@ -38,7 +38,7 @@ module Songdrop
38
38
  # puts "[Songdrop::Parser] parsing array #{property}"
39
39
  objects = []
40
40
  hash[property].each do |el|
41
- objects << parse_object(el)
41
+ objects << objectize(el['object'], parse_object(el))
42
42
  end
43
43
  properties[property.to_sym] = objects
44
44
  elsif hash[property].is_a? Hash
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: songdrop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Taylor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-09 00:00:00.000000000 Z
11
+ date: 2013-07-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: songdrop is a Ruby & RubyMotion client for the Songdrop.com API.
14
14
  email: moomerman@gmail.com
@@ -34,7 +34,7 @@ files:
34
34
  - lib/songdrop/objects/mix.rb
35
35
  - lib/songdrop/objects/song.rb
36
36
  - lib/songdrop/objects/user.rb
37
- homepage: https://songdrop.com/
37
+ homepage: https://github.com/moomerman/songdrop_ruby
38
38
  licenses:
39
39
  - MIT
40
40
  metadata: {}