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.
- data/README.md +13 -2
- data/ext/rbpod/collection.c +0 -1
- data/ext/rbpod/database.c +16 -19
- data/ext/rbpod/device.c +22 -17
- data/ext/rbpod/error.c +0 -1
- data/ext/rbpod/extconf.rb +7 -2
- data/ext/rbpod/macros.h +99 -0
- data/ext/rbpod/playlist.c +52 -21
- data/ext/rbpod/playlist_collection.c +94 -8
- data/ext/rbpod/rbpod.c +0 -34
- data/ext/rbpod/rbpod.h +36 -10
- data/ext/rbpod/track.c +255 -83
- data/ext/rbpod/track_collection.c +108 -5
- data/ext/rbpod/utilities.c +27 -0
- data/lib/rbpod/version.rb +1 -1
- data/spec/rbpod/playlist_collection_spec.rb +20 -0
- data/spec/rbpod/playlist_spec.rb +58 -1
- metadata +6 -12
- data/ext/rbpod/collection.h +0 -10
- data/ext/rbpod/database.h +0 -10
- data/ext/rbpod/device.h +0 -10
- data/ext/rbpod/error.h +0 -12
- data/ext/rbpod/playlist.h +0 -10
- data/ext/rbpod/playlist_collection.h +0 -10
- data/ext/rbpod/track.h +0 -10
- data/ext/rbpod/track_collection.h +0 -10
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.
|
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:
|
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/
|
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:
|
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:
|
176
|
+
hash: -656903251
|
183
177
|
requirements:
|
184
178
|
- libgpod-1.0
|
185
179
|
rubyforge_project:
|
data/ext/rbpod/collection.h
DELETED
data/ext/rbpod/database.h
DELETED
data/ext/rbpod/device.h
DELETED
data/ext/rbpod/error.h
DELETED
data/ext/rbpod/playlist.h
DELETED
data/ext/rbpod/track.h
DELETED