2009-03-30 21:35:00 +00:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
2008-06-18 00:55:11 +00:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
2011-08-16 17:13:41 +00:00
|
|
|
require 'rspec/core/rake_task'
|
2008-06-18 00:55:11 +00:00
|
|
|
|
2008-06-24 01:05:57 +00:00
|
|
|
THRIFT = '../../compiler/cpp/thrift'
|
|
|
|
|
2009-03-30 17:14:06 +00:00
|
|
|
task :default => [:spec]
|
2008-06-18 00:55:11 +00:00
|
|
|
|
2009-03-30 17:14:06 +00:00
|
|
|
task :spec => [:'gen-rb', :realspec]
|
|
|
|
|
2011-08-16 17:13:41 +00:00
|
|
|
RSpec::Core::RakeTask.new(:realspec) do |t|
|
|
|
|
t.rspec_opts = ['--color']
|
2008-06-18 00:55:11 +00:00
|
|
|
end
|
2008-06-18 00:57:06 +00:00
|
|
|
|
2011-08-16 17:13:41 +00:00
|
|
|
RSpec::Core::RakeTask.new(:'spec:rcov') do |t|
|
|
|
|
t.rspec_opts = ['--color']
|
2008-06-18 01:12:15 +00:00
|
|
|
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-07-08 00:47:49 +00:00
|
|
|
sh 'make', '-C', File.dirname(__FILE__) + "/../../test/rb", "check"
|
2008-06-18 01:13:48 +00:00
|
|
|
end
|
|
|
|
|
2008-06-18 01:17:06 +00:00
|
|
|
desc 'Compile the .thrift files for the specs'
|
2009-03-19 18:57:43 +00:00
|
|
|
task :'gen-rb' => [:'gen-rb:spec', :'gen-rb:benchmark', :'gen-rb:debug_proto']
|
2008-06-24 01:05:57 +00:00
|
|
|
|
|
|
|
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
|
2009-03-19 18:57:43 +00:00
|
|
|
|
|
|
|
task :'debug_proto' do
|
|
|
|
sh "mkdir", "-p", "debug_proto_test"
|
|
|
|
sh THRIFT, '--gen', 'rb', "-o", "debug_proto_test", "../../test/DebugProtoTest.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|
|
2010-10-22 11:20:25 +00:00
|
|
|
p.author = ['Thrift Developers']
|
2010-11-02 07:33:30 +00:00
|
|
|
p.email = ['dev@thrift.apache.org']
|
2010-10-22 11:20:25 +00:00
|
|
|
p.summary = "Ruby bindings for the Apache Thrift RPC system"
|
2010-11-02 07:33:30 +00:00
|
|
|
p.url = "http://thrift.apache.org"
|
2008-06-24 01:06:00 +00:00
|
|
|
p.include_rakefile = true
|
2011-08-13 21:29:36 +00:00
|
|
|
p.version = "0.8.0-dev"
|
2009-07-30 15:52:25 +00:00
|
|
|
p.rubygems_version = ">= 1.2.0"
|
2008-06-24 01:06:00 +00:00
|
|
|
end
|
2008-07-08 00:47:49 +00:00
|
|
|
|
|
|
|
task :install => [:check_site_lib]
|
|
|
|
|
|
|
|
require 'rbconfig'
|
|
|
|
task :check_site_lib do
|
|
|
|
if File.exist?(File.join(Config::CONFIG['sitelibdir'], 'thrift.rb'))
|
|
|
|
fail "thrift is already installed in site_ruby"
|
|
|
|
end
|
|
|
|
end
|
2008-06-24 01:06:00 +00:00
|
|
|
rescue LoadError
|
2008-06-26 18:14:25 +00:00
|
|
|
[:install, :package].each do |t|
|
|
|
|
desc "Stub for #{t}"
|
|
|
|
task t do
|
|
|
|
fail "The Echoe gem is required for this task"
|
|
|
|
end
|
|
|
|
end
|
2008-06-24 01:06:00 +00:00
|
|
|
end
|
2011-08-16 17:13:41 +00:00
|
|
|
|