Created
July 4, 2014 16:25
-
-
Save foxweb/c0507a0020e6089376ce to your computer and use it in GitHub Desktop.
This file contains 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
types = %w(people companies places events type1 type2 type3 type4 type5 type6) | |
positions =* (1..10) | |
Document.all.each do |document| | |
puts 'Document GID: ' + document.gid.to_s | |
positions.each do |position| | |
tagging = Tagging.create do |tagging| | |
tagging.document_gid = document.gid | |
tagging.type = types.sample | |
tagging.zone_id = document.zone_id | |
tagging.position = position | |
end | |
puts ' Tagging: ' + tagging.id.to_s | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
В
populate.rake
сделал такое.