jwood/tenacity

bulid methods

Opened this issue · 2 comments

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'

Tenacity does not support build methods, and I don't have any plans to add them. However, pull requests are always welcome.

thanks