ruby-mp3info 0.4 → 0.5
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 +61 -0
- data/EXAMPLES +40 -0
- data/README +28 -0
- data/lib/mp3info.rb +221 -427
- data/lib/mp3info/extension_modules.rb +36 -0
- data/lib/mp3info/id3v2.rb +311 -0
- data/test.rb +325 -0
- metadata +27 -13
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
|
2
|
-
rubygems_version: 0.8.
|
1
|
+
!ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: ruby-mp3info
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2005-
|
8
|
-
summary: ruby-mp3info is a pure-ruby library
|
6
|
+
version: "0.5"
|
7
|
+
date: 2005-12-09 00:00:00 +01:00
|
8
|
+
summary: ruby-mp3info is a pure-ruby library to retrieve low level informations on mp3 files and manipulate id3v1 and id3v2 tags
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: moumar@rubyforge.org
|
12
12
|
homepage: http://ruby-mp3info.rubyforge.org
|
13
13
|
rubyforge_project: ruby-mp3info
|
@@ -18,20 +18,34 @@ bindir: bin
|
|
18
18
|
has_rdoc: true
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
25
24
|
version:
|
26
25
|
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
27
28
|
authors:
|
28
|
-
|
29
|
+
- Guillaume Pierronnet
|
29
30
|
files:
|
30
|
-
|
31
|
+
- README
|
32
|
+
- CHANGELOG
|
33
|
+
- EXAMPLES
|
34
|
+
- test.rb
|
35
|
+
- lib/mp3info.rb
|
36
|
+
- lib/mp3info/extension_modules.rb
|
37
|
+
- lib/mp3info/id3v2.rb
|
31
38
|
test_files: []
|
39
|
+
|
32
40
|
rdoc_options: []
|
41
|
+
|
33
42
|
extra_rdoc_files: []
|
43
|
+
|
34
44
|
executables: []
|
45
|
+
|
35
46
|
extensions: []
|
47
|
+
|
36
48
|
requirements: []
|
37
|
-
|
49
|
+
|
50
|
+
dependencies: []
|
51
|
+
|