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.
Files changed (4) hide show
  1. data/CHANGES +4 -0
  2. data/Rakefile +1 -1
  3. data/ext/extconf.rb +5 -4
  4. metadata +2 -2
data/CHANGES CHANGED
@@ -1,5 +1,9 @@
1
1
  = id3lib-ruby changes
2
2
 
3
+ === 0.2.1 (r23)
4
+
5
+ * Fixed extconf.rb to print a message and abort if id3lib can't be found.
6
+
3
7
  === 0.2.0 (r21)
4
8
 
5
9
  * Overhauled direct access methods
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ require 'rake/testtask'
10
10
  require 'rake/rdoctask'
11
11
 
12
12
 
13
- PKG_VERSION = '0.2.0'
13
+ PKG_VERSION = '0.2.1'
14
14
 
15
15
  PKG_FILES = FileList[
16
16
  'lib/**/*.rb',
data/ext/extconf.rb CHANGED
@@ -1,6 +1,7 @@
1
-
2
1
  require 'mkmf'
3
2
 
4
- have_header('id3.h')
5
- have_library('id3', 'ID3Tag_New')
6
- create_makefile('id3lib_api')
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.0
7
- date: 2006-05-07 00:00:00 +02:00
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