-
Notifications
You must be signed in to change notification settings - Fork 49
/
Rakefile
57 lines (44 loc) · 1.11 KB
/
Rakefile
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
56
begin
require 'bones'
rescue LoadError
abort '### please install the "bones" gem ###'
end
ensure_in_path 'lib'
require 'webby'
task :default => 'spec:specdoc'
Bones {
name 'webby'
summary 'Awesome static website creation and management!'
authors 'Tim Pease'
email '[email protected]'
url 'http://webby.rubyforge.org/'
version Webby::VERSION
readme_file 'README.rdoc'
ignore_file '.gitignore'
rubyforge.name 'webby'
ruby_opts %w[-W0]
exclude << %w(^webby.gemspec$)
rdoc.dir 'doc/rdoc'
rdoc.remote_dir 'rdoc'
rdoc.exclude << %w(^examples)
rdoc.include << readme_file
spec.opts << '--color'
use_gmail
ann.email.to << '[email protected]'
ann.text = <<-ANN
== 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 'hpricot'
depend_on 'launchy'
depend_on 'logging'
depend_on 'loquacious'
depend_on 'rake'
depend_on 'rspec', :development => true
depend_on 'bones-git', :development => true
depend_on 'bones-extras', :development => true
}