lib/ynab_convert/processors.rb in ynab_convert-1.0.8 vs lib/ynab_convert/processors.rb in ynab_convert-2.0.0
- old
+ new
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Base processor must be loaded first as all others inherit from it
-require 'ynab_convert/processor/base'
+require 'ynab_convert/processors/processor'
# Load all known processors
-Dir[File.join(__dir__, 'processor', '*.rb')].each { |file| require file }
+Dir[File.join(__dir__, 'processors', '*.rb')].sort.each { |file| require file }