2021-03-30 06:08:46 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-02-01 09:57:29 +08:00
|
|
|
# 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.
|
|
|
|
|
2021-09-21 00:20:02 +08:00
|
|
|
require File.expand_path("config/application", __dir__)
|
2011-02-01 09:57:29 +08:00
|
|
|
|
|
|
|
require "rake"
|
|
|
|
require "rake/testtask"
|
2014-07-18 04:20:08 +08:00
|
|
|
Bundler.require(:i18n_tools)
|
2011-02-01 09:57:29 +08:00
|
|
|
|
2014-07-24 01:14:22 +08:00
|
|
|
CanvasRails::Application.load_tasks
|