jwood / tenacity

A database client independent way of managing relationships between models backed by different databases.
MIT License
118 stars 17 forks source link

bulid methods #48

Open liuliang opened 11 years ago

liuliang commented 11 years ago
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 11 years ago

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

liuliang commented 11 years ago

thanks