mirror of
https://github.com/publiclab/mapknitter.git
synced 2025-12-12 19:29:58 +01:00
12 lines
445 B
Ruby
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 |