2006-06-28 22:11:03 +04:00
|
|
|
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2011-05-07 02:14:21 +04:00
|
|
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
|
|
|
|
|
|
|
|
require 'rake'
|
|
|
|
require 'rake/testtask'
|
2011-06-16 13:20:49 +04:00
|
|
|
require 'rdoc/task'
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2011-05-07 02:14:21 +04:00
|
|
|
require 'tasks/rails'
|
2012-07-10 16:39:32 +04:00
|
|
|
# Load rake tasks from plugins in chiliproject_plugins
|
|
|
|
Dir["#{RAILS_ROOT}/vendor/chiliproject_plugins/*/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
|