flac2mp3 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,9 @@
1
- == 0.2.2 2008-03-30
1
+ == 0.2.3 2008-04-18
2
+
3
+ * 1 bug fix:
4
+ * Comment is now taken from the correct source FLAC tag (description, not comment)
5
+
6
+ == 0.2.2 2008-04-18
2
7
 
3
8
  * 1 bug fix:
4
9
  * BPM is now actually carried over from FLAC to MP3 tags, not just thought to be.
data/lib/flac2mp3.rb CHANGED
@@ -25,7 +25,7 @@ module Flac2mp3
25
25
  :album => :album,
26
26
  :artist => :artist,
27
27
  :bpm => :TBPM,
28
- :comment => :comments,
28
+ :description => :comments,
29
29
  :composer => :composer,
30
30
  :date => :year,
31
31
  :genre => :genre_s,
@@ -2,7 +2,7 @@ module Flac2mp3 #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -138,8 +138,8 @@ describe Flac2mp3, 'providing a mapping of tags' do
138
138
  Flac2mp3.tag_mapping[:bpm].should == :TBPM
139
139
  end
140
140
 
141
- it "should map 'comment' to 'comments'" do
142
- Flac2mp3.tag_mapping[:comment].should == :comments
141
+ it "should map 'description' to 'comments'" do
142
+ Flac2mp3.tag_mapping[:description].should == :comments
143
143
  end
144
144
 
145
145
  it "should map 'composer' to 'composer'" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flac2mp3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yossef Mendelssohn