This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-02-10 17:11:30 -08:00
|
|
|
module Rails
|
|
|
|
module EngineExtensions
|
|
|
|
# Rewrite task loading code to filter digitalocean.rake task
|
|
|
|
def run_tasks_blocks(app)
|
2023-02-07 16:10:25 -08:00
|
|
|
Railtie.instance_method(:run_tasks_blocks).bind_call(self, app)
|
2023-02-18 14:38:14 -08:00
|
|
|
paths['lib/tasks'].existent.reject { |ext| ext.end_with?('digitalocean.rake') }.sort.each { |ext| load(ext) }
|
2021-02-10 17:11:30 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Rails::Engine.prepend(Rails::EngineExtensions)
|