flac2mp3 0.2.2 → 0.2.3
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/History.txt +6 -1
- data/lib/flac2mp3.rb +1 -1
- data/lib/flac2mp3/version.rb +1 -1
- data/spec/flac2mp3_spec.rb +2 -2
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
== 0.2.
|
|
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
data/lib/flac2mp3/version.rb
CHANGED
data/spec/flac2mp3_spec.rb
CHANGED
|
@@ -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 '
|
|
142
|
-
Flac2mp3.tag_mapping[:
|
|
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
|