public
Description: TextMate bundle for working with PHPUnit
Homepage: http://meritt.github.com/phpunit-tmbundle/
Clone URL: git://github.com/meritt/phpunit-tmbundle.git
Click here to lend your support to: phpunit-tmbundle and make a donation at www.pledgie.com !
phpunit-tmbundle / Rakefile
100644 14 lines (9 sloc) 0.286 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
gem "rspec"
 
require 'spec/rake/spectask'
 
ENV['TM_SUPPORT_PATH'] ||= "/Applications/TextMate.app/Contents/SharedSupport/Support"
 
desc "Default Task"
task :default => [:spec]
 
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
end