ruby-on-rails – 无法使用rake db:seed for Rails 3.0创建Devise帐户

我正在尝试使用rake db:seed预先加载所有设备帐户.所有其他模型的数据似乎都插入到数据库中,但由于某种原因,没有为使用设计的Person模型创建行.从Web界面注册工作正常,但我想避免手动创建帐户,这就是我使用rake db:seed的原因.我从通过Web界面创建的帐户中复制了encrypted_pa​​ssword,password_salt.请让我知道如何解决这个问题?非常感谢..
people = Person.create(
                        :email => 'nnn@gmail.com',:encrypted_password => '$2a$10$SyacAOhJQtVeTcTPYm.ROuFbhGMylfj4fLrK3NHyeRwfEokKp2NVW',:password_salt => '$2a$10$SyacAOhJQtVeTcTPYm.ROu',:first_name => "nnn",:last_name => "yyy"
                       )


in routes.rb i have.

    devise_for :people

解决方法

我过去使用Devise做过这个.我没有尝试设置加密密码和盐.我只是设置密码和确认这样的东西(我没有我的项目方便):
Person.create(:email => 'nnn@gmail.com',:password => 'foobar',:password_confirmation => 'foobar',:first_name => 'nn',:last_name => 'yy')

试试吧.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...