Browse Source

use service instead of rake task in seeds

pull/1064/head
Phil Lee 4 years ago
parent
commit
2f79b531da
  1. 4
      db/seeds.rb

4
db/seeds.rb

@ -279,8 +279,8 @@ unless Rails.env.test?
if LaRentRange.count.zero? if LaRentRange.count.zero?
Dir.glob("config/rent_range_data/*.csv").each do |path| Dir.glob("config/rent_range_data/*.csv").each do |path|
start_year = File.basename(path, ".csv") start_year = File.basename(path, ".csv")
Rake::Task["data_import:rent_ranges"].invoke(start_year, path) service = Imports::RentRangesService.new(start_year:, path:)
Rake::Task["data_import:rent_ranges"].reenable service.call
end end
end end
end end

Loading…
Cancel
Save