~cytrogen/masto-fe

ref: e0b54ed3e16f9320751fdccfaeebb384f65b3113 masto-fe/lib/rails/engine_extensions.rb -rw-r--r-- 417 bytes
e0b54ed3 — github-actions[bot] New Crowdin Translations (automated) (#27304) 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)