Created
July 7, 2014 09:50
-
-
Save ehlyzov/342dfbb03930c92ad69d to your computer and use it in GitHub Desktop.
SEO-информация для категорий [tulp.ru]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parents = Category.where(parent_id: nil); | |
| DUMP = -> (category) { | |
| [ | |
| category.id, | |
| category.name, | |
| TulpSeo::Data.lookup( | |
| "seo.info.categories.#{category.translit}.default", | |
| { city_parent: 'Санкт-Петербурга' } | |
| ) | |
| ] | |
| }; | |
| CSV.open(Pathname.new('~/categories.csv').expand_path,'w') do |csv| | |
| parents.each do |parent| | |
| csv << DUMP[parent] | |
| parent.children.each do |child| | |
| csv << DUMP[child] | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment