decodeideas / ruby-on-rails-tmbundle forked from drnic/ruby-on-rails-tmbundle

Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]

This URL has Read+Write access

decodeideas (author)
Wed Jun 03 07:33:59 -0700 2009
commit  bf4072e35c920df0437aa90780abef3a69f2712e
tree    e1cc19d080144fd5cde125c05704c9221829eb3f
parent  fd5ec641c2d30a086a2f41eb8c9c4ba20c6af965
ruby-on-rails-tmbundle / Rakefile
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.3.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 }