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 +4 -4
- data/LICENSE +1 -1
- data/README.md +1 -3
- data/lib/grooveshark/client.rb +1 -1
- data/lib/grooveshark/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e9dd260b7f4d07b0b200b7610662dedb2b263cb
|
|
4
|
+
data.tar.gz: 1d36af6ca2fddb2c934dcd268b84f04867470c75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 632bd55c045edcca90f3753022ba674df0d53edf696fcbe31dfb505934af744205d56ba49dff8a97f7234b43be5635e24c761b41f05c4c310af3da6cee90b8bf
|
|
7
|
+
data.tar.gz: 9240505ea69ff2220fad131872eaac023afcace89ad5baac1e5b0f2b40e3bebd48584dc996c3746283f9e169127d5ae04c1d8f786811723ece234829b9b70768
|
data/LICENSE
CHANGED
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-
|
|
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
|
data/lib/grooveshark/client.rb
CHANGED
|
@@ -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
|
data/lib/grooveshark/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2015-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|