diff --git a/lib/wordpress/category.rb b/lib/wordpress/category.rb index b43e928..b365dcb 100644 --- a/lib/wordpress/category.rb +++ b/lib/wordpress/category.rb @@ -10,8 +10,8 @@ module WordPressImport name == other.name end - def to_refinery - BlogCategory.find_or_create_by_title(name) + def to_rails + Tag.find_or_create_by_title(name) end end end