-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
31 lines (26 loc) · 949 Bytes
/
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
# Rakefile for the tem_mr_search Rubygem.
#
# Author:: Victor Costan
# Copyright:: Copyright (C) 2009 Massachusetts Institute of Technology
# License:: MIT
require 'rubygems'
gem 'echoe'
require 'echoe'
Echoe.new('tem_mr_search') do |p|
p.project = 'tem' # rubyforge project
p.docs_host = "[email protected]:/var/www/gforge-projects/tem/rdoc/"
p.author = 'Victor Costan'
p.email = '[email protected]'
p.summary = 'Tem Map-Reduce proof of concept: database search.'
p.url = 'http://tem.rubyforge.org'
p.dependencies = ['tem_ruby >=0.15.2', 'tem_multi_proxy >=0.2.7']
p.development_dependencies = ["echoe >=3.2",
"flexmock >=0.8.6"]
p.need_tar_gz = !Gem.win_platform?
p.need_zip = !Gem.win_platform?
p.rdoc_pattern = /^(lib|bin|tasks|ext)|^BUILD|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
end
if $0 == __FILE__
Rake.application = Rake::Application.new
Rake.application.run
end