2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-06 01:45:08 +08:00
|
|
|
if ARGV.length != 1 || !File.exist?(ARGV[0])
|
2018-10-31 03:45:47 +08:00
|
|
|
STDERR.puts '', 'Usage of mbox importer:', 'bundle exec ruby mbox.rb <path/to/settings.yml>'
|
2017-05-27 04:26:18 +08: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-14 06:59:14 +08:00
|
|
|
Importer.new(ARGV[0]).perform
|
2017-05-27 04:26:18 +08:00
|
|
|
end
|
|
|
|
end
|