blob: d9a53fc69d9e22d411cfcf8d4f4a2e9e35b36129 (
plain)
1
2
3
4
5
6
7
|
# 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.expand_path('../config/application', __FILE__)
require 'rake'
Alaveteli::Application.load_tasks
Dir[File.join(File.dirname(__FILE__),'commonlib','rblib','tests','*.rake')].each { |file| load(file) }
|