ArtistLink / id3_tags

Ruby gem to read and write ID3 metadata from/to MP3 files
MIT License
6 stars 5 forks source link

Fixes #5 by adding better version comparison #6

Closed kourylape closed 4 years ago

kourylape commented 4 years ago

I believe this project is dead, but this fixes #5

The current version of Taglib is 1.11.1

'1.11.1' < '1.7.2'
=> true

The expected result is false.

Gem::Version.new('1.11.1') < Gem::Version.new('1.7.2')
=> false