forked from bhb/construct
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
36 lines (29 loc) · 1 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
# 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.
begin
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 'construct'
task :default => 'test'
PROJ.name = 'test-construct'
PROJ.authors = 'Ben Brinckerhoff ([email protected]) and Avdi Grimm ([email protected])'
PROJ.email = '[email protected], [email protected]'
PROJ.url = 'http://github.com/devver/construct'
PROJ.version = Construct::VERSION
PROJ.rubyforge.name = 'test-construct'
PROJ.test.files = FileList['test/**/*_test.rb']
PROJ.ruby_opts = []
PROJ.readme_file = "README.markdown"
PROJ.summary = "Construct is a DSL for creating temporary files and directories during testing."
PROJ.ignore_file = ".gitignore"
PROJ.gem.development_dependencies << ["jeremymcanally-pending", "~> 0.1"]
# EOF