Sha256: eca61fce87b14c90ec92ebc4ac2283f5ae069250a1abbd194f7fbdd4f64a36ac
Contents?: true
Size: 727 Bytes
Versions: 2
Compression:
Stored size: 727 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' Hoe.plugin :yard $:.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.rdoc', 5..9).join("\n\n") p.url = p.paragraphs_of('README.rdoc', 0).first.split(/\n/)[1..-1] p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.remote_rdoc_dir = '' p.rdoc_locations << "rubyforge.org:/var/www/gforge-projects/ruby-mp3info/" end # vim: syntax=Ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-mp3info-0.6.15 | Rakefile |
ruby-mp3info-0.6.14 | Rakefile |