Rev 30 | Blame | Compare with Previous | Last modification | View Log | RSS feed
## 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.#require 'rubygems'require 'rake'require 'spec/rake/spectask'THRIFT = '../../compiler/cpp/thrift'task :default => [:spec]task :spec => [:'gen-rb', :realspec]Spec::Rake::SpecTask.new(:realspec) do |t|t.spec_files = FileList['spec/**/*_spec.rb']t.spec_opts = ['--color']endSpec::Rake::SpecTask.new(:'spec:rcov') do |t|t.spec_files = FileList['spec/**/*_spec.rb']t.spec_opts = ['--color']t.rcov = truet.rcov_opts = ['--exclude', '^spec,/gems/']enddesc 'Run the compiler tests (requires full thrift checkout)'task :test do# ensure this is a full thrift checkout and not a tarball of the ruby libscmd = 'head -1 ../../README 2>/dev/null | grep Thrift >/dev/null 2>/dev/null'system(cmd) or fail "rake test requires a full thrift checkout"sh 'make', '-C', File.dirname(__FILE__) + "/../../test/rb", "check"enddesc 'Compile the .thrift files for the specs'task :'gen-rb' => [:'gen-rb:spec', :'gen-rb:benchmark', :'gen-rb:debug_proto']namespace :'gen-rb' dotask :'spec' dodir = File.dirname(__FILE__) + '/spec'sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/ThriftSpec.thrift"endtask :'benchmark' dodir = File.dirname(__FILE__) + '/benchmark'sh THRIFT, '--gen', 'rb', '-o', dir, "#{dir}/Benchmark.thrift"endtask :'debug_proto' dosh "mkdir", "-p", "debug_proto_test"sh THRIFT, '--gen', 'rb', "-o", "debug_proto_test", "../../test/DebugProtoTest.thrift"endenddesc 'Run benchmarking of NonblockingServer'task :benchmark doruby 'benchmark/benchmark.rb'endbeginrequire '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 = truep.version = "0.1.0"p.rubygems_version = ">= 1.2.0"endtask :install => [:check_site_lib]require 'rbconfig'task :check_site_lib doif File.exist?(File.join(Config::CONFIG['sitelibdir'], 'thrift.rb'))fail "thrift is already installed in site_ruby"endendrescue LoadError[:install, :package].each do |t|desc "Stub for #{t}"task t dofail "The Echoe gem is required for this task"endendend