-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (27 loc) · 682 Bytes
/
Rakefile
File metadata and controls
32 lines (27 loc) · 682 Bytes
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
begin
require 'rubygems'
require 'bones'
Bones.setup
rescue LoadError
begin
load 'tasks/setup.rb'
rescue LoadError
raise RuntimeError, '### please install the "bones" gem ###'
end
end
ensure_in_path 'lib'
require 'repub'
task :default => 'test:run'
PROJ.name = 'repub'
PROJ.authors = 'Dmitri Goutnik'
PROJ.email = 'dg@invisiblellama.net'
PROJ.url = 'http://rubyforge.org/projects/repub/'
PROJ.version = Repub::VERSION
PROJ.rubyforge.name = 'repub'
PROJ.readme_file = 'README.rdoc'
PROJ.exclude = %w[tmp/ \.git \.DS_Store .*\.tmproj .*\.epub ^pkg/]
PROJ.spec.opts << '--color'
depend_on 'nokogiri'
depend_on 'builder'
depend_on 'chardet'
depend_on 'launchy'