Sha256: 2afdb3065b3349ff577bf8c96fd2f5dcc5d215892c8bfeded7255fc0cf68034c
Contents?: true
Size: 726 Bytes
Versions: 47
Compression:
Stored size: 726 Bytes
Contents
# $Id$ # This file does not define any rake tasks. It is used to load some project # settings if they are not defined by the user. PROJ.rdoc_exclude << "^#{Regexp.escape(PROJ.manifest_file)}$" PROJ.exclude << "^#{Regexp.escape(PROJ.ann_file)}$" PROJ.changes ||= paragraphs_of(PROJ.history_file, 0..1).join("\n\n") PROJ.description ||= paragraphs_of(PROJ.readme_file, 'description').join("\n\n") PROJ.summary ||= PROJ.description.split('.').first PROJ.files ||= if test(?f, PROJ.manifest_file) files = File.readlines(PROJ.manifest_file).map {|fn| fn.chomp.strip} files.delete '' files else [] end PROJ.executables ||= PROJ.files.find_all {|fn| fn =~ %r/^bin/} PROJ.rdoc_main ||= PROJ.readme_file # EOF
Version data entries
47 entries across 46 versions & 10 rubygems