rosa-build/db/seeds.rb

9 lines
266 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
user.confirmed_at = Time.now.utc; user.save