grooveshark 0.2.13 → 0.2.14

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: c843eab31ff57bc1d3054c4fd0f5b5187da7b5aa
4
- data.tar.gz: 19560cda396fec78d7de1c47d2bf2b9810dd2563
3
+ metadata.gz: 9e9dd260b7f4d07b0b200b7610662dedb2b263cb
4
+ data.tar.gz: 1d36af6ca2fddb2c934dcd268b84f04867470c75
5
5
  SHA512:
6
- metadata.gz: 0f30ff12934dfea5802862ed51d3d984cf4d6f3e7cfd097dc980188c467f1e31581e6575a65549634574ce1668615132c1940f346da855dd6b291904134d49c4
7
- data.tar.gz: ab02c7a541c0310065e5c2717db85f2b91db94b0cfd1145524b03f1c4419161681d5eeb17bb174ece1212fc519bed86168d58e6d8144bbf7e9fa1413ae269272
6
+ metadata.gz: 632bd55c045edcca90f3753022ba674df0d53edf696fcbe31dfb505934af744205d56ba49dff8a97f7234b43be5635e24c761b41f05c4c310af3da6cee90b8bf
7
+ data.tar.gz: 9240505ea69ff2220fad131872eaac023afcace89ad5baac1e5b0f2b40e3bebd48584dc996c3746283f9e169127d5ae04c1d8f786811723ece234829b9b70768
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011-2013 Dan Sosedoff.
1
+ Copyright (c) 2011-2015 Dan Sosedoff <dan.sosedoff@gmail.com>
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of
4
4
  this software and associated documentation files (the "Software"), to deal in
data/README.md CHANGED
@@ -4,8 +4,6 @@ Unofficial grooveshark API ruby library gives your ability to search and stream
4
4
  manage playlists, media library and favorites.
5
5
  API was discovered using http proxy and does not pretend to be always valid due to website API changes.
6
6
 
7
- **Looking for maintainer. Submit a new issue if interested.**
8
-
9
7
  ## Installation
10
8
 
11
9
  Install gem from rubygems:
@@ -257,7 +255,7 @@ bundle exec rake
257
255
 
258
256
  MIT License
259
257
 
260
- Copyright (c) 2011-2013 Dan Sosedoff.
258
+ Copyright (c) 2011-2015 Dan Sosedoff <dan.sosedoff@gmail.com>
261
259
 
262
260
  Permission is hereby granted, free of charge, to any person obtaining a copy of
263
261
  this software and associated documentation files (the "Software"), to deal in
@@ -69,7 +69,7 @@ module Grooveshark
69
69
  search = request('getResultsFromSearch', type: type, query: query)
70
70
  results = search['result'].map do |data|
71
71
  next Song.new data if type == 'Songs'
72
- next Playlist.new data if type == 'Playlists'
72
+ next Playlist.new(self, data) if type == 'Playlists'
73
73
  data
74
74
  end if search.key?('result')
75
75
  results
@@ -1,4 +1,4 @@
1
1
  # Grooveshark module
2
2
  module Grooveshark
3
- VERSION = '0.2.13'
3
+ VERSION = '0.2.14'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grooveshark
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.13
4
+ version: 0.2.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Sosedoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-09 00:00:00.000000000 Z
11
+ date: 2015-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json