public
Description: Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]
Homepage: http://groups.google.com/group/rubyonrails-textmate
Clone URL: git://github.com/drnic/ruby-on-rails-tmbundle.git
Click here to lend your support to: ruby-on-rails-tmbundle and make a donation at www.pledgie.com !
drnic (author)
Sun May 11 17:57:07 -0700 2008
commit  078fbdc4ac151bf7a5953224dae6d7f4c6f13c43
tree    30d2b75d7e958b518bee2c47bba210d02a75aa8f
parent  6d8b3018df6021b6520f2c77d6ed7c05c952ecb6
100644 20 lines (16 sloc) 0.389 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rubygems'
require 'rake'
require 'rake/testtask'
 
APP_VERSION="2.0.0"
APP_NAME='Ruby on Rails.tmbundle'
APP_ROOT=File.dirname(__FILE__)
 
RUBY_APP='ruby'
 
desc "TMBundle Test Task"
task :default => [ :test ]
Rake::TestTask.new { |t|
  t.libs << "test"
  t.pattern = 'Support/test/*_test.rb'
  t.verbose = true
  t.warning = false
}
Dir['tasks/**/*.rake'].each { |file| load file }