2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-05 12:45:08 -05:00
|
|
|
if ARGV.length != 1 || !File.exist?(ARGV[0])
|
2018-10-30 15:45:47 -04:00
|
|
|
STDERR.puts '', 'Usage of mbox importer:', 'bundle exec ruby mbox.rb <path/to/settings.yml>'
|
2017-05-26 16:26:18 -04:00
|
|
|
STDERR.puts '', "Use the settings file from #{File.expand_path('mbox/settings.yml', File.dirname(__FILE__))} as an example."
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
module ImportScripts
|
|
|
|
module Mbox
|
|
|
|
require_relative 'mbox/importer'
|
2020-03-13 18:59:14 -04:00
|
|
|
Importer.new(ARGV[0]).perform
|
2017-05-26 16:26:18 -04:00
|
|
|
end
|
|
|
|
end
|