rosa-build/db/seeds.rb

12 lines
458 B
Ruby
Raw Normal View History

2012-01-30 20:39:34 +00:00
# -*- encoding : utf-8 -*-
2011-11-02 08:22:27 +00:00
ARCHES = %w(i386 i586 x86_64)
2011-03-12 14:15:30 +00:00
ARCHES.each do |arch|
Arch.find_or_create_by_name arch
end
user = User.new uname: 'rosa_system', email: 'rosa_system@rosalinux.ru', password: SecureRandom.base64
2012-12-27 18:27:50 +00:00
user.confirmed_at, user.role = Time.now.utc, 'system'; user.save
2012-11-13 17:35:25 +00:00
user = User.new uname: 'iso_worker_1', email: 'iso_worker_1@rosalinux.ru', password: SecureRandom.base64
2012-12-27 18:27:50 +00:00
user.confirmed_at, user.role = Time.now.utc, 'system'; user.save