# $Id: post_load.rake 85 2008-02-06 17:59:00Z tim_pease $ # This file does not define any rake tasks. It is used to load some project # settings if they are not defined by the user. unless PROJ.changes PROJ.changes = paragraphs_of('History.txt', 0..1).join("\n\n") end unless PROJ.description PROJ.description = paragraphs_of('README.txt', 'description').join("\n\n") end unless PROJ.summary PROJ.summary = PROJ.description.split('.').first end # EOF