rbpod 0.0.5 → 0.0.6

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbpod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
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: 2013-11-27 00:00:00.000000000 Z
12
+ date: 2014-06-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -124,24 +124,18 @@ files:
124
124
  - Rakefile
125
125
  - bin/rbpod
126
126
  - ext/rbpod/collection.c
127
- - ext/rbpod/collection.h
128
127
  - ext/rbpod/database.c
129
- - ext/rbpod/database.h
130
128
  - ext/rbpod/device.c
131
- - ext/rbpod/device.h
132
129
  - ext/rbpod/error.c
133
- - ext/rbpod/error.h
134
130
  - ext/rbpod/extconf.rb
131
+ - ext/rbpod/macros.h
135
132
  - ext/rbpod/playlist.c
136
- - ext/rbpod/playlist.h
137
133
  - ext/rbpod/playlist_collection.c
138
- - ext/rbpod/playlist_collection.h
139
134
  - ext/rbpod/rbpod.c
140
135
  - ext/rbpod/rbpod.h
141
136
  - ext/rbpod/track.c
142
- - ext/rbpod/track.h
143
137
  - ext/rbpod/track_collection.c
144
- - ext/rbpod/track_collection.h
138
+ - ext/rbpod/utilities.c
145
139
  - lib/rbpod.rb
146
140
  - lib/rbpod/version.rb
147
141
  - rbpod.gemspec
@@ -170,7 +164,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
164
  version: '0'
171
165
  segments:
172
166
  - 0
173
- hash: 995859569
167
+ hash: -656903251
174
168
  required_rubygems_version: !ruby/object:Gem::Requirement
175
169
  none: false
176
170
  requirements:
@@ -179,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
173
  version: '0'
180
174
  segments:
181
175
  - 0
182
- hash: 995859569
176
+ hash: -656903251
183
177
  requirements:
184
178
  - libgpod-1.0
185
179
  rubyforge_project:
@@ -1,10 +0,0 @@
1
- /* collection.h */
2
-
3
- #ifndef RBPOD_COLLECTION_H
4
- #define RBPOD_COLLECTION_H
5
-
6
- RUBY_EXTERN VALUE mRbPodCollection;
7
-
8
- void Init_rbpod_collection(void);
9
-
10
- #endif /* RBPOD_COLLECTION_H */
data/ext/rbpod/database.h DELETED
@@ -1,10 +0,0 @@
1
- /* database.h */
2
-
3
- #ifndef RBPOD_DATABASE_H
4
- #define RBPOD_DATABASE_H
5
-
6
- RUBY_EXTERN VALUE cRbPodDatabase;
7
-
8
- void Init_rbpod_database(void);
9
-
10
- #endif /* RBPOD_DATABASE_H */
data/ext/rbpod/device.h DELETED
@@ -1,10 +0,0 @@
1
- /* device.h */
2
-
3
- #ifndef RBPOD_DEVICE_H
4
- #define RBPOD_DEVICE_H
5
-
6
- RUBY_EXTERN VALUE cRbPodDevice;
7
-
8
- void Init_rbpod_device(void);
9
-
10
- #endif /* RBPOD_DEVICE_H */
data/ext/rbpod/error.h DELETED
@@ -1,12 +0,0 @@
1
- /* error.h */
2
-
3
- #ifndef RBPOD_ERROR_H
4
- #define RBPOD_ERROR_H
5
-
6
- RUBY_EXTERN VALUE eRbPodError;
7
-
8
- void Init_rbpod_error(void);
9
-
10
- inline VALUE rbpod_raise_error(GError *error);
11
-
12
- #endif /* RBPOD_ERROR_H */
data/ext/rbpod/playlist.h DELETED
@@ -1,10 +0,0 @@
1
- /* playlist.h */
2
-
3
- #ifndef RBPOD_PLAYLIST_H
4
- #define RBPOD_PLAYLIST_H
5
-
6
- RUBY_EXTERN VALUE cRbPodPlaylist;
7
-
8
- void Init_rbpod_playlist(void);
9
-
10
- #endif /* RBPOD_PLAYLIST_H */
@@ -1,10 +0,0 @@
1
- /* playlist_collection.h */
2
-
3
- #ifndef RBPOD_PLAYLIST_COLLECTION_H
4
- #define RBPOD_PLAYLIST_COLLECTION_H
5
-
6
- RUBY_EXTERN VALUE cRbPodPlaylistCollection;
7
-
8
- void Init_rbpod_playlist_collection(void);
9
-
10
- #endif /* RBPOD_PLAYLIST_COLLECTION_H */
data/ext/rbpod/track.h DELETED
@@ -1,10 +0,0 @@
1
- /* track.h */
2
-
3
- #ifndef RBPOD_TRACK_H
4
- #define RBPOD_TRACK_H
5
-
6
- RUBY_EXTERN VALUE cRbPodTrack;
7
-
8
- void Init_rbpod_track(void);
9
-
10
- #endif /* RBPOD_TRACK_H */
@@ -1,10 +0,0 @@
1
- /* track_collection.h */
2
-
3
- #ifndef RBPOD_TRACK_COLLECTION_H
4
- #define RBPOD_TRACK_COLLECTION_H
5
-
6
- RUBY_EXTERN VALUE cRbPodTrackCollection;
7
-
8
- void Init_rbpod_track_collection(void);
9
-
10
- #endif /* RBPOD_TRACK_COLLECTION_H */