aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/action_mailbox.rake
blob: b7c11934f80225cc68ef48eba93168f1adbf6e68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

namespace :action_mailbox do
  # Prevent migration installation task from showing up twice.
  Rake::Task["install:migrations"].clear_comments

  desc "Copy over the migration"
  task install: %w( environment copy_migration active_storage:install )

  task :copy_migration do
    if Rake::Task.task_defined?("action_mailbox:install:migrations")
      Rake::Task["action_mailbox:install:migrations"].invoke
    else
      Rake::Task["app:action_mailbox:install:migrations"].invoke
    end
  end
end