lib/table_sync/instrument.rb in table_sync-2.2.0 vs lib/table_sync/instrument.rb in table_sync-2.3.0

- old
+ new

@@ -1,9 +1,9 @@ # frozen_string_literal: true module TableSync::Instrument module_function - def notify(*args) - TableSync.notifier&.notify(*args) + def notify(**args) + TableSync.notifier&.notify(**args) end end