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