Sha256: 762caf5435fb6c023494b4b5b4bdc75f95ce8ca081342eb4c858178dcfab90e4
Contents?: true
Size: 629 Bytes
Versions: 11
Compression:
Stored size: 629 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' $:.unshift("./lib/") require 'mp3info' Hoe.new('ruby-mp3info', Mp3Info::VERSION) do |p| p.rubyforge_name = 'ruby-mp3info' p.author = "Guillaume Pierronnet" p.email = "moumar@rubyforge.org" p.summary = "ruby-mp3info is a pure-ruby library to retrieve low level informations on mp3 files and manipulate id3v1 and id3v2 tags" p.description = p.paragraphs_of('README.txt', 5..9).join("\n\n") p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1] p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.remote_rdoc_dir = '' end # vim: syntax=Ruby
Version data entries
11 entries across 11 versions & 1 rubygems