mastodon/lib/rails/engine_extensions.rb

14 lines
417 B
Ruby
Raw Permalink Normal View History

2022-06-28 12:48:43 +00:00
# frozen_string_literal: true
module Rails
module EngineExtensions
# Rewrite task loading code to filter digitalocean.rake task
def run_tasks_blocks(app)
Railtie.instance_method(:run_tasks_blocks).bind(self).call(app)
2022-06-28 12:48:43 +00:00
paths['lib/tasks'].existent.reject { |ext| ext.end_with?('digitalocean.rake') }.sort.each { |ext| load(ext) }
end
end
end
Rails::Engine.prepend(Rails::EngineExtensions)