From 5a7103ae5d2d0727fd6ddb4a97304fb8c9968ff3 Mon Sep 17 00:00:00 2001 From: Kevin Clark Date: Wed, 18 Jun 2008 00:55:11 +0000 Subject: [PATCH] Add simple Rakefile for running specs git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668907 13f79535-47bb-0310-9956-ffa450edef68 --- lib/rb/Rakefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/rb/Rakefile diff --git a/lib/rb/Rakefile b/lib/rb/Rakefile new file mode 100644 index 00000000..017ab9bf --- /dev/null +++ b/lib/rb/Rakefile @@ -0,0 +1,10 @@ +require 'rubygems' +require 'rake' +require 'spec/rake/spectask' + +task :default => :spec + +Spec::Rake::SpecTask.new("spec") do |t| + t.spec_files = FileList['spec/**/*_spec.rb'] + t.spec_opts = ['--color'] +end -- 2.17.1