public
Description: Merb bundle for TextMate (uses Ruby, Ruby on Rails, Datamapper and Sequel bundles as necessary)
Homepage:
Clone URL: git://github.com/drnic/merb-tmbundle.git
spdemac (author)
Thu Oct 30 15:47:43 -0700 2008
drnic (committer)
Wed Dec 17 06:10:54 -0800 2008
merb-tmbundle / Rakefile
100644 20 lines (16 sloc) 0.412 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="1.0.0"
APP_NAME='Merb.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 = APP_ROOT + '/Support/test/test_*.rb'
  t.verbose = true
  t.warning = false
}
Dir[APP_ROOT + '/Support/tasks/**/*.rake'].each { |file| load file }