Sha256: b70fb2763c2c619f62b5c3d16c84e8ca238354df336d808ffa3b79c7c355156f

Contents?: true

Size: 1002 Bytes

Versions: 1

Compression:

Stored size: 1002 Bytes

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'

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.'
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.1'
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.1 Rakefile