public
Description: A lightweight and flexible website management system.
Homepage: http://webby.rubyforge.org/
Clone URL: git://github.com/TwP/webby.git
Search Repo:
Ana Nelson (author)
Mon Jun 23 13:45:28 -0700 2008
TwP (committer)
Fri Jul 11 10:43:29 -0700 2008
webby / Rakefile
100644 55 lines (40 sloc) 1.153 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# $Id$
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'webby'
 
task :default => 'spec:specdoc'
 
PROJ.name = 'webby'
PROJ.summary = 'static website creation and management'
PROJ.authors = 'Tim Pease'
PROJ.email = 'tim.pease@gmail.com'
PROJ.url = 'http://webby.rubyforge.org/'
PROJ.description = paragraphs_of('README.txt', 3).join("\n\n")
PROJ.rubyforge.name = 'webby'
PROJ.version = Webby::VERSION
PROJ.release_name = 'Forgetful Foobar'
 
PROJ.ruby_opts = %w[-W0]
PROJ.exclude << %w(^examples/[^/]+/output ^tasks/archive ^tags$)
 
PROJ.rdoc.dir = 'doc/rdoc'
PROJ.rdoc.remote_dir = 'rdoc'
PROJ.rdoc.exclude << %w(^data ^examples)
 
PROJ.svn.path = ''
PROJ.spec.opts << '--color'
 
PROJ.ann.email[:to] << 'webby-forum@googlegroups.com'
PROJ.ann.email[:server] = 'smtp.gmail.com'
PROJ.ann.email[:port] = 587
 
PROJ.ann.text = <<-ANN
== FUN FACT
 
TODO: add a new fun fact before next release
 
== POST SCRIPT
 
Visit the Webby forum to chat with other Webby-Heads:
http://groups.google.com/group/webby-forum
 
Blessings,
TwP
ANN
 
depend_on 'directory_watcher'
depend_on 'heel'
depend_on 'hpricot'
depend_on 'logging'
depend_on 'rake'
depend_on 'rspec'
 
# EOF