id3lib-ruby 0.2.0 → 0.2.1
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/CHANGES +4 -0
- data/Rakefile +1 -1
- data/ext/extconf.rb +5 -4
- metadata +2 -2
data/CHANGES
CHANGED
data/Rakefile
CHANGED
data/ext/extconf.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
1
|
require 'mkmf'
|
|
3
2
|
|
|
4
|
-
have_header('id3.h')
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
if have_header('id3.h') and have_library('id3', 'ID3Tag_New')
|
|
4
|
+
create_makefile('id3lib_api')
|
|
5
|
+
else
|
|
6
|
+
message "You must have id3lib installed in order to use id3lib-ruby!\n"
|
|
7
|
+
end
|
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: id3lib-ruby
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.2.
|
|
7
|
-
date: 2006-05-
|
|
6
|
+
version: 0.2.1
|
|
7
|
+
date: 2006-05-19 00:00:00 +02:00
|
|
8
8
|
summary: id3lib-ruby provides a Ruby interface to the id3lib C++ library for easily editing ID3 tags (v1 and v2) like with pyid3lib.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|