Author: kclark
Date: Tue Jun 17 17:55:11 2008
New Revision: 668907

URL: http://svn.apache.org/viewvc?rev=668907&view=rev
Log:
Add simple Rakefile for running specs

Added:
    incubator/thrift/trunk/lib/rb/Rakefile

Added: incubator/thrift/trunk/lib/rb/Rakefile
URL: 
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/Rakefile?rev=668907&view=auto
==============================================================================
--- incubator/thrift/trunk/lib/rb/Rakefile (added)
+++ incubator/thrift/trunk/lib/rb/Rakefile Tue Jun 17 17:55:11 2008
@@ -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


Reply via email to