spotify 12.0.0 → 12.0.1
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.
- data/CHANGELOG.md +17 -0
- data/README.markdown +1 -1
- data/lib/spotify.rb +7 -762
- data/lib/spotify/error_wrappers.rb +165 -0
- data/lib/spotify/functions.rb +730 -0
- data/lib/spotify/gc_wrappers.rb +104 -0
- data/lib/spotify/types/image_id.rb +38 -0
- data/lib/spotify/types/pointer.rb +61 -0
- data/lib/spotify/types/utf8_string.rb +45 -0
- data/lib/spotify/version.rb +1 -1
- data/spec/spotify_spec.rb +150 -2
- data/spotify.gemspec +1 -1
- metadata +12 -6
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spotify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.0.
|
4
|
+
version: 12.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|
@@ -88,7 +88,7 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - ~>
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '
|
91
|
+
version: '3.0'
|
92
92
|
type: :development
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -96,7 +96,7 @@ dependencies:
|
|
96
96
|
requirements:
|
97
97
|
- - ~>
|
98
98
|
- !ruby/object:Gem::Version
|
99
|
-
version: '
|
99
|
+
version: '3.0'
|
100
100
|
description: ! " Spotify for Ruby is a primitive wrapper around libspotify using
|
101
101
|
Ruby FFI.\n If all you want is libspotify for Ruby, you should probably use at
|
102
102
|
Hallon\n instead: https://rubygems.org/gems/hallon\n"
|
@@ -115,6 +115,12 @@ files:
|
|
115
115
|
- README.markdown
|
116
116
|
- Rakefile
|
117
117
|
- lib/spotify.rb
|
118
|
+
- lib/spotify/error_wrappers.rb
|
119
|
+
- lib/spotify/functions.rb
|
120
|
+
- lib/spotify/gc_wrappers.rb
|
121
|
+
- lib/spotify/types/image_id.rb
|
122
|
+
- lib/spotify/types/pointer.rb
|
123
|
+
- lib/spotify/types/utf8_string.rb
|
118
124
|
- lib/spotify/version.rb
|
119
125
|
- spec/api.h
|
120
126
|
- spec/spotify_spec.rb
|
@@ -134,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
134
140
|
version: '0'
|
135
141
|
segments:
|
136
142
|
- 0
|
137
|
-
hash:
|
143
|
+
hash: 876530711000755866
|
138
144
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
145
|
none: false
|
140
146
|
requirements:
|
@@ -143,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
149
|
version: '0'
|
144
150
|
segments:
|
145
151
|
- 0
|
146
|
-
hash:
|
152
|
+
hash: 876530711000755866
|
147
153
|
requirements: []
|
148
154
|
rubyforge_project:
|
149
155
|
rubygems_version: 1.8.24
|