mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 18:02:33 +00:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
require 'rubygems'
|
|
|
|
require 'wordpress'
|
|
|
|
if ARGV.size < 3
|
|
puts "Usage importer.rb worpress-export.xml /path/to/nanoc/site /path/to/rewrite_map"
|
|
exit 3
|
|
end
|
|
|
|
i = Importer::Wordpress.new(ARGV[0], ARGV[1], ARGV[2])
|
|
|
|
i.run
|