blob: a41b89b7bc32eba135f91bea8b5192b7a49e235e [file] [log] [blame]
Kevin Clark5a7103a2008-06-18 00:55:11 +00001require 'rubygems'
2require 'rake'
3require 'spec/rake/spectask'
4
Kevin Clarkc2a07b12008-06-18 00:57:06 +00005task :default => [:spec, :test]
Kevin Clark5a7103a2008-06-18 00:55:11 +00006
7Spec::Rake::SpecTask.new("spec") do |t|
8 t.spec_files = FileList['spec/**/*_spec.rb']
9 t.spec_opts = ['--color']
10end
Kevin Clarkc2a07b12008-06-18 00:57:06 +000011
12task :test do
13 fork do
14 exec 'make', '-C', File.dirname(__FILE__) + "/../../test/rb"
15 end
16 Process.wait
17end