Sha256: 2fd6e34d61f248660706b8a6daf5c92ecd67360ef616aa0d43d11559f29f4470
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. load 'tasks/setup.rb' ensure_in_path 'lib' require 'ludy' require 'ludy/tasks' task :default do sh 'rake --tasks' end PROJ.name = 'ludy' PROJ.summary = 'Aims to extend Ruby standard library, providing some useful tools that\'s not existed in the standard library, especially for functional programming.' PROJ.authors = 'Lin Jen-Shin (a.k.a. godfat 真常)' PROJ.email = 'strip any number: 18god29fat7029 (at] godfat32 -dooot- 20org' PROJ.url = 'http://ludy.rubyforge.org/' PROJ.description = paragraphs_of('README', 1).join("\n\n") PROJ.changes = paragraphs_of('CHANGES', 0..1).join("\n\n") PROJ.rubyforge_name = 'ludy' PROJ.version = '0.1.7' PROJ.exclude << '.DS_Store' << '^tmp' PROJ.dependencies << 'rake' PROJ.rdoc_main = 'README' PROJ.rdoc_exclude << 'deprecated' << 'Manifest' << 'Rakefile' << 'tmp$' << '^tmp' PROJ.rdoc_include << '\w+' PROJ.spec_opts << '--color' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ludy-0.1.7 | Rakefile |