bulid methods
Opened this issue · 2 comments
liuliang commented
class User
include Mongoid::Document
t_has_one :profile
end
class Profile < ActiveRecord::Base
belongs_to :user
end
user = User.new
user.bulid_profile => undefined method 'bulid_profile'
jwood commented
Tenacity does not support build methods, and I don't have any plans to add them. However, pull requests are always welcome.
liuliang commented
thanks