Orbit/db/seeds.rb

34 lines
613 B
Ruby

require 'factory_girl'
require 'faker'
FactoryGirl.definition_file_paths = Dir["#{Rails.root}/vendor/built_in_modules/*/spec/factories"]
FactoryGirl.find_definitions
CoAuthorRelation.destroy_all
CoAuthor.destroy_all
JournalLevelType.destroy_all
WritingJournalFile.destroy_all
WritingJournal.destroy_all
#Dir[Rails.root.join("spec/factories/*.rb")].each {|f| require f}
10.size.times do
FactoryGirl.create(:journal_level)
end
10.times do
FactoryGirl.create(:relations)
end
50.times do
FactoryGirl.create(:paper_record)
end
50.times do
FactoryGirl.create(:co_author_candidate)
end
puts "Success!"