spotify 7.0.0 → 7.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/.gemtest +0 -0
- data/.gitignore +1 -0
- data/README.markdown +4 -0
- data/lib/spotify/version.rb +1 -1
- data/spec/spotify_spec.rb +1 -0
- data/spotify.gemspec +1 -0
- metadata +16 -5
data/.gemtest
ADDED
|
File without changes
|
data/.gitignore
CHANGED
data/README.markdown
CHANGED
|
@@ -10,6 +10,10 @@ There is no sugar-coating. When (if) you use this library you will practically b
|
|
|
10
10
|
|
|
11
11
|
If you want a library that is easier to use, have a look at [Hallon](https://github.com/Burgestrand/Hallon).
|
|
12
12
|
|
|
13
|
+
Need help installing libspotify?
|
|
14
|
+
--------------------------------
|
|
15
|
+
You’re in luck! I’ve got you covered in the wiki, just [visit its main page](https://github.com/Burgestrand/libspotify-ruby/wiki)!
|
|
16
|
+
|
|
13
17
|
A note about versioning scheme
|
|
14
18
|
------------------------------
|
|
15
19
|
Given a version `X.Y.Z`, each segment corresponds to:
|
data/lib/spotify/version.rb
CHANGED
data/spec/spotify_spec.rb
CHANGED
data/spotify.gemspec
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: spotify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 7.0.
|
|
5
|
+
version: 7.0.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Kim Burgestrand
|
|
@@ -10,8 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-04-
|
|
14
|
-
default_executable:
|
|
13
|
+
date: 2011-04-14 00:00:00 Z
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|
|
17
16
|
name: ffi
|
|
@@ -57,6 +56,17 @@ dependencies:
|
|
|
57
56
|
version: 2.0.0
|
|
58
57
|
type: :development
|
|
59
58
|
version_requirements: *id004
|
|
59
|
+
- !ruby/object:Gem::Dependency
|
|
60
|
+
name: bundler
|
|
61
|
+
prerelease: false
|
|
62
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
63
|
+
none: false
|
|
64
|
+
requirements:
|
|
65
|
+
- - ~>
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 1.0.0
|
|
68
|
+
type: :development
|
|
69
|
+
version_requirements: *id005
|
|
60
70
|
description:
|
|
61
71
|
email:
|
|
62
72
|
- kim@burgestrand.se
|
|
@@ -67,6 +77,7 @@ extensions: []
|
|
|
67
77
|
extra_rdoc_files: []
|
|
68
78
|
|
|
69
79
|
files:
|
|
80
|
+
- .gemtest
|
|
70
81
|
- .gitignore
|
|
71
82
|
- Gemfile
|
|
72
83
|
- LICENSE
|
|
@@ -77,7 +88,6 @@ files:
|
|
|
77
88
|
- spec/api.h
|
|
78
89
|
- spec/spotify_spec.rb
|
|
79
90
|
- spotify.gemspec
|
|
80
|
-
has_rdoc: true
|
|
81
91
|
homepage: https://github.com/Burgestrand/libspotify-ruby
|
|
82
92
|
licenses:
|
|
83
93
|
- X11 License
|
|
@@ -101,10 +111,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
111
|
requirements: []
|
|
102
112
|
|
|
103
113
|
rubyforge_project:
|
|
104
|
-
rubygems_version: 1.
|
|
114
|
+
rubygems_version: 1.7.2
|
|
105
115
|
signing_key:
|
|
106
116
|
specification_version: 3
|
|
107
117
|
summary: Bare-bones Ruby bindings for libspotify
|
|
108
118
|
test_files:
|
|
109
119
|
- spec/api.h
|
|
110
120
|
- spec/spotify_spec.rb
|
|
121
|
+
has_rdoc:
|