rbcdio 0.02 → 0.03
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 +34 -1
- data/INSTALL +26 -35
- data/Makefile.am +17 -15
- data/Makefile.in +54 -62
- data/NEWS +6 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/config.guess +49 -43
- data/config.sub +17 -7
- data/configure +64 -91
- data/configure.ac +3 -6
- data/doc/created.rid +1 -1
- data/example/audio.rb +13 -15
- data/example/cd-read.rb +13 -15
- data/example/cdchange.rb +14 -16
- data/example/device.rb +13 -14
- data/example/drivers.rb +13 -15
- data/example/eject.rb +13 -14
- data/example/iso1.rb +7 -8
- data/example/iso2.rb +7 -8
- data/example/iso3.rb +7 -8
- data/example/tracks.rb +13 -14
- data/ext/cdio/Makefile +24 -28
- data/ext/cdio/rubycdio_wrap.c +1263 -183
- data/ext/iso9660/Makefile +24 -28
- data/ext/iso9660/rubyiso9660_wrap.c +1050 -176
- data/install-sh +82 -266
- data/lib/cdio.rb +45 -46
- data/lib/iso9660.rb +13 -15
- data/missing +27 -34
- data/swig/audio.swg +12 -13
- data/swig/compat.swg +12 -13
- data/swig/device.swg +12 -14
- data/swig/device_const.swg +12 -13
- data/swig/disc.swg +12 -13
- data/swig/read.swg +12 -14
- data/swig/rubycdio.swg +12 -14
- data/swig/rubyiso9660.swg +12 -14
- data/swig/track.swg +12 -13
- data/swig/types.swg +12 -13
- metadata +47 -40
metadata
CHANGED
@@ -1,33 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.4
|
3
|
-
specification_version: 1
|
4
2
|
name: rbcdio
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2007-10-27 07:20:57 -04:00
|
8
|
-
summary: Ruby to libcdio (CD Input and Control library)
|
9
|
-
require_paths:
|
10
|
-
- lib
|
11
|
-
email: rocky@gnu.org
|
12
|
-
homepage: http://rubyforge.org/projects/rbcdio/
|
13
|
-
rubyforge_project: rbcdio
|
14
|
-
description: A library for CD-ROM and CD image access. Applications wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM or of the specific details of various CD-image formats may benefit from using this library. A library for working with ISO-9660 filesystems is included.
|
15
|
-
autorequire: rubycdio
|
16
|
-
default_executable:
|
17
|
-
bindir: bin
|
18
|
-
has_rdoc: true
|
19
|
-
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 1.8.2
|
24
|
-
version:
|
4
|
+
version: "0.03"
|
25
5
|
platform: ruby
|
26
|
-
signing_key:
|
27
|
-
cert_chain:
|
28
|
-
post_install_message:
|
29
6
|
authors:
|
30
7
|
- Rocky Bernstein
|
8
|
+
autorequire: rubycdio
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-09-22 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: A library for CD-ROM and CD image access. Applications wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM or of the specific details of various CD-image formats may benefit from using this library. A library for working with ISO-9660 filesystems is included.
|
17
|
+
email: rocky@gnu.org
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/cdio/extconf.rb
|
22
|
+
- ext/iso9660/extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
31
25
|
files:
|
32
26
|
- AUTHORS
|
33
27
|
- COPYING
|
@@ -48,14 +42,14 @@ files:
|
|
48
42
|
- data/copying.iso
|
49
43
|
- data/isofs-m1.bin
|
50
44
|
- data/isofs-m1.cue
|
51
|
-
- doc/files
|
52
|
-
- doc/index.html
|
53
45
|
- doc/rdoc-style.css
|
54
|
-
- doc/
|
55
|
-
- doc/
|
46
|
+
- doc/files
|
47
|
+
- doc/classes
|
56
48
|
- doc/fr_file_index.html
|
49
|
+
- doc/fr_class_index.html
|
50
|
+
- doc/fr_method_index.html
|
51
|
+
- doc/index.html
|
57
52
|
- doc/created.rid
|
58
|
-
- doc/classes
|
59
53
|
- example/device.rb
|
60
54
|
- example/audio.rb
|
61
55
|
- example/copying
|
@@ -63,13 +57,13 @@ files:
|
|
63
57
|
- example/README
|
64
58
|
- example/cd-read.rb
|
65
59
|
- example/drivers.rb
|
66
|
-
- example/cdchange.rb
|
67
60
|
- example/eject.rb
|
68
61
|
- example/COPYING
|
69
62
|
- example/tracks.rb
|
70
63
|
- example/iso1.rb
|
71
64
|
- example/iso2.rb
|
72
65
|
- example/iso3.rb
|
66
|
+
- example/cdchange.rb
|
73
67
|
- ext/cdio/rubycdio_wrap.c
|
74
68
|
- ext/iso9660/rubyiso9660_wrap.c
|
75
69
|
- ext/cdio/Makefile
|
@@ -101,18 +95,31 @@ files:
|
|
101
95
|
- test/cdda.bin
|
102
96
|
- test/cdda.cue
|
103
97
|
- test/cdda.toc
|
104
|
-
|
105
|
-
|
98
|
+
has_rdoc: true
|
99
|
+
homepage: http://rubyforge.org/projects/rbcdio/
|
100
|
+
post_install_message:
|
106
101
|
rdoc_options: []
|
107
102
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
-
|
114
|
-
|
103
|
+
require_paths:
|
104
|
+
- lib
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 1.8.2
|
110
|
+
version:
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: "0"
|
116
|
+
version:
|
115
117
|
requirements: []
|
116
118
|
|
117
|
-
|
119
|
+
rubyforge_project: rbcdio
|
120
|
+
rubygems_version: 1.0.1
|
121
|
+
signing_key:
|
122
|
+
specification_version: 2
|
123
|
+
summary: Ruby to libcdio (CD Input and Control library)
|
124
|
+
test_files: []
|
118
125
|
|