public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
tracks / Rakefile
100644 16 lines (12 sloc) 0.446 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
 
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'tasks/rails'
 
begin
  require 'test/rails/rake_tasks'
rescue LoadError => e
  #It's ok if you don't have ZenTest installed if you're not a developer
end