spotify 8.0.0 → 8.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/spotify.rb +4 -3
  2. data/lib/spotify/version.rb +1 -1
  3. metadata +5 -3
data/lib/spotify.rb CHANGED
@@ -81,16 +81,17 @@ module Spotify
81
81
  :allow_sync_over_mobile, 0x4,
82
82
  :allow_sync_over_wifi , 0x8]
83
83
 
84
- attach_function :session_create, :sp_session_create, [ :pointer, :pointer ], :error
84
+ attach_function :session_create, :sp_session_create, [ :pointer, :pointer ], :error, :blocking => true
85
85
  attach_function :session_release, :sp_session_release, [ :pointer ], :void
86
86
 
87
- attach_function :session_login, :sp_session_login, [ :pointer, :string, :string ], :void
87
+ attach_function :session_process_events, :sp_session_process_events, [ :pointer, :pointer ], :void, :blocking => true
88
+ attach_function :session_login, :sp_session_login, [ :pointer, :string, :string ], :void, :blocking => true
89
+
88
90
  attach_function :session_user, :sp_session_user, [ :pointer ], :pointer
89
91
  attach_function :session_logout, :sp_session_logout, [ :pointer ], :void
90
92
  attach_function :session_connectionstate, :sp_session_connectionstate, [ :pointer ], :connectionstate
91
93
  attach_function :session_userdata, :sp_session_userdata, [ :pointer ], :pointer
92
94
  attach_function :session_set_cache_size, :sp_session_set_cache_size, [ :pointer, :size_t ], :void
93
- attach_function :session_process_events, :sp_session_process_events, [ :pointer, :pointer ], :void
94
95
  attach_function :session_player_load, :sp_session_player_load, [ :pointer, :pointer ], :error
95
96
  attach_function :session_player_seek, :sp_session_player_seek, [ :pointer, :int ], :void
96
97
  attach_function :session_player_play, :sp_session_player_play, [ :pointer, :bool ], :void
@@ -1,3 +1,3 @@
1
1
  module Spotify
2
- VERSION = [8, 0, 0].join('.')
2
+ VERSION = [8, 0, 1].join('.')
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: spotify
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 8.0.0
5
+ version: 8.0.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Kim Burgestrand
@@ -10,7 +10,8 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-24 00:00:00 Z
13
+ date: 2011-05-30 00:00:00 +02:00
14
+ default_executable:
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: ffi
@@ -101,6 +102,7 @@ files:
101
102
  - spec/api.h
102
103
  - spec/spotify_spec.rb
103
104
  - spotify.gemspec
105
+ has_rdoc: true
104
106
  homepage: https://github.com/Burgestrand/libspotify-ruby
105
107
  licenses:
106
108
  - X11 License
@@ -124,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
126
  requirements:
125
127
  - libspotify, v0.0.8
126
128
  rubyforge_project:
127
- rubygems_version: 1.8.3
129
+ rubygems_version: 1.6.2
128
130
  signing_key:
129
131
  specification_version: 3
130
132
  summary: Bare-bones Ruby bindings for libspotify