Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
3eca078
)
Add simple Rakefile for running specs
author
Kevin Clark
<kclark@apache.org>
Wed, 18 Jun 2008 00:55:11 +0000
(
00:55
+0000)
committer
Kevin Clark
<kclark@apache.org>
Wed, 18 Jun 2008 00:55:11 +0000
(
00:55
+0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668907
13f79535
-47bb-0310-9956-
ffa450edef68
lib/rb/Rakefile
[new file with mode: 0644]
patch
|
blob
diff --git a/lib/rb/Rakefile
b/lib/rb/Rakefile
new file mode 100644
(file)
index 0000000..
017ab9b
--- /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