# -*- ruby -*- require 'rubygems' require 'hoe' require 'lib/ar_mailer_generator_version' Hoe.new('ar_mailer_generator', ArMailerGeneratorVersion::VERSION) do |p| p.rubyforge_name = 'ar_mailer_generator' p.author = 'Geoffrey Grosenbach' p.email = 'boss@topfunky.com' p.summary = 'Generates files for using ar_mailer to send emails from Rails applications.' p.description = p.paragraphs_of('README.txt', 1..1).join("\n\n") p.url = "http://rubyforge.org/projects/seattlerb" p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.extra_deps = ['ar_mailer'] end # vim: syntax=Ruby