2010-09-22 22:59:30 +00:00
|
|
|
module Locomotive
|
|
|
|
module Import
|
2010-10-28 23:36:45 +00:00
|
|
|
class Site < Base
|
2010-09-22 22:59:30 +00:00
|
|
|
|
2010-10-28 23:36:45 +00:00
|
|
|
def process
|
2011-06-21 13:12:20 +00:00
|
|
|
attributes = database['site'].clone.delete_if { |name, value| %w{name pages assets content_types}.include?(name) }
|
2010-09-22 22:59:30 +00:00
|
|
|
|
|
|
|
site.attributes = attributes
|
|
|
|
|
|
|
|
site.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|