Files
mapknitter/Rakefile
Sasha Boginsky 6ae5c23a9b Restructure rake test task runner (#380)
* add a mysql setup file

* Squash commits
2019-03-25 10:58:22 -04:00

12 lines
445 B
Ruby

#!/usr/bin/env rake
# 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__)
# Load all the rake tasks from the "tasks" folder.
task_dir = File.expand_path("../tasks", __FILE__)
Dir["#{task_dir}/**/*.rake"].each do |task_file|
load task_file
end
Mapknitter::Application.load_tasks