2008-06-18 00:55:11 +00:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
|
|
|
require 'spec/rake/spectask'
|
|
|
|
|
2008-06-24 01:05:57 +00:00
|
|
|
THRIFT = '../../compiler/cpp/thrift'
|
|
|
|
|
2008-06-18 00:57:06 +00:00
|
|
|
task :default => [:spec, :test]
|
2008-06-18 00:55:11 +00:00
|
|
|
|
2008-06-24 01:05:57 +00:00
|
|
|
Spec::Rake::SpecTask.new do |t|
|
2008-06-18 00:55:11 +00:00
|
|
|
t.spec_files = FileList['spec/**/*_spec.rb']
|
|
|
|
t.spec_opts = ['--color']
|
|
|
|
end
|
2008-06-18 00:57:06 +00:00
|
|
|
|
2008-06-24 01:05:57 +00:00
|
|
|
Spec::Rake::SpecTask.new(:'spec:rcov') do |t|
|
2008-06-18 01:12:15 +00:00
|
|
|
t.spec_files = FileList['spec/**/*_spec.rb']
|
|
|
|
t.spec_opts = ['--color']
|
|
|
|
t.rcov = true
|
|
|
|
t.rcov_opts = ['--exclude', '^spec,/gems/']
|
|
|
|
end
|
|
|
|
|
2008-06-24 01:05:57 +00:00
|
|
|
desc 'Run the compiler tests (requires full thrift checkout)'
|
2008-06-18 00:57:06 +00:00
|
|
|
task :test do
|
2008-06-24 01:05:57 +00:00
|
|
|
# ensure this is a full thrift checkout and not a tarball of the ruby libs
|
|
|
|
cmd = 'head -1 ../../README 2>/dev/null | grep Thrift >/dev/null 2>/dev/null'
|
|
|
|
system(cmd) or fail "rake test requires a full thrift checkout"
|
2008-06-18 01:13:48 +00:00
|
|
|
sh 'make', '-C', File.dirname(__FILE__) + "/../../test/rb"
|
|
|
|
end
|
|
|
|
|
2008-06-18 01:17:06 +00:00
|
|
|
desc 'Compile the .thrift files for the specs'
|
2008-06-24 01:05:57 +00:00
|
|
|
task :'gen-rb' => [:'gen-rb:spec', :'gen-rb:benchmark']
|
|
|
|
|
|
|
|
namespace :'gen-rb' do
|
|
|
|
task :'spec' do
|
|
|
|
dir = File.dirname(__FILE__) + '/spec'
|
|
|
|
sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/ThriftSpec.thrift"
|
|
|
|
end
|
|
|
|
|
|
|
|
task :'benchmark' do
|
|
|
|
dir = File.dirname(__FILE__) + '/benchmark'
|
|
|
|
sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/Benchmark.thrift"
|
|
|
|
end
|
2008-06-18 01:17:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Run benchmarking of NonblockingServer'
|
|
|
|
task :benchmark do
|
2008-06-18 01:19:09 +00:00
|
|
|
ruby 'benchmark/benchmark.rb'
|
2008-06-18 00:57:06 +00:00
|
|
|
end
|
2008-06-24 01:06:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
require 'echoe'
|
|
|
|
|
|
|
|
Echoe.new('thrift') do |p|
|
|
|
|
p.author = ['Kevin Ballard', 'Kevin Clark', 'Mark Slee']
|
|
|
|
p.email = ['kevin@sb.org', 'kevin.clark@gmail.com', 'mcslee@facebook.com']
|
|
|
|
p.summary = "Ruby libraries for Thrift (a language-agnostic RPC system)"
|
|
|
|
p.url = "http://incubator.apache.org/thrift/"
|
|
|
|
p.include_rakefile = true
|
|
|
|
end
|
|
|
|
rescue LoadError
|
|
|
|
end
|