Apply Rubocop Performance/BindCall (#23437)

local
Nick Schonning 1 year ago committed by GitHub
parent cec005068f
commit c92e033cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/active_record/database_tasks_extensions.rb
  2. 2
      lib/rails/engine_extensions.rb

@ -11,7 +11,7 @@ module ActiveRecord
ActiveRecord::Base.establish_connection(db_config)
Mastodon::Snowflake.define_timestamp_id
original_load_schema.bind(self).call(db_config, *args)
original_load_schema.bind_call(self, db_config, *args)
Mastodon::Snowflake.ensure_id_sequences_exist
end

@ -2,7 +2,7 @@ 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)
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

Loading…
Cancel
Save