~cytrogen/masto-fe

ref: 20ac5be1c1038a7c01b2e4f0456d8cf5db7ccd4e masto-fe/lib/rails/engine_extensions.rb -rw-r--r-- 417 bytes
20ac5be1 — Claire Fix error on `status` type notification (bell icon) (#26884) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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_call(self, app)
      paths['lib/tasks'].existent.reject { |ext| ext.end_with?('digitalocean.rake') }.sort.each { |ext| load(ext) }
    end
  end
end

Rails::Engine.prepend(Rails::EngineExtensions)