I only can show you by comparsion to make my point. In goal.rb, i get an error undefined method by 'lbm_lbs' using "user.profile.lbm_lbs" BUT in other model such as: Progress_Chart.rb which functioned without any errors.
class User < ActiveRecord::Base
has_one :profile
has_one :goal
has_many :progress_charts
end
class Goal < ActiveRecord::Base
belongs_to :user
end
class Progress_Chart < ActiveRecord::Base
belongs_to :user
end
Step 1. user created successfully using model User
Step 2. user.profile created successfully using model Profile at least what I think because user.profile can be accessed in Progress_Chart.rb but not by Goal.rb
Step 3. In Model Goal, I have unabled to access user.profile Object despite that I have successfully using model Profile.rb with examples used in Progress_Chart.rb below such as:
user.profile.date_of_birth.year
I do not understand, and have left my head scratching!
Goal.rb
class Goal < ActiveRecord::Base
attr_accessible :desired_bf_pct, :goal_type
belongs_to :user
before_save :set_goal
before_save :calculate_ideal_body_weight_lbs
private
def set_goal
if self.goal_type == "1"
self.goal_type = "Lose Fat"
elsif self.goal_type == "2"
self.goal_type = "Gain Muscles"
end
end
def calculate_ideal_body_weight_lbs
# It is working
test = Profile.find(29)
self.ideal_body_weight_lbs = test.lbm_lbs/ ( 1 - ( self.desired_bf_pct / 100 ) )
# It is not working!
self.ideal_body_weight_lbs = user.profile.lbm_lbs/ ( 1 - ( self.desired_bf_pct / 100 ) )
self.ideal_body_weight_lbs = self.ideal_body_weight_lbs.round(0)
end
end
Progress_Chart.rb
class ProgressChart < ActiveRecord::Base
IN_CM = 2.54 # centimetres
FT_IN_INCHES = 12 # inches
IN_KG = 2.2 # lbs
YEAR_REGEX = /\d{4}/
ACTIVITY_FACTOR_REGEX = /1.(\d{3}|\d{2}|\d)/
attr_accessible :body_weight_lbs, :bf_pct
belongs_to :user
before_save :calculate_body_composition
before_save :calculate_tdee
after_save :update_user_details
private
def calculate_tdee
if user.tdee.tdee_calc_type == "'Quick' Method"
# Maintenance (TDEE) = 15-16 calories per lb. of bodyweight
self.tdee = 15 * self.body_weight_lbs
self.tdee_calc_type_used = "Qck"
elsif user.tdee.tdee_calc_type == "Harris-Benedict"
# calculate year difference between this year and the year the user was borned.
# quick calculation, need to be revised for a proper calculation
#here a line below (user.profile....) - it can be accessed by this model
age = 2012 - user.profile.date_of_birth.year
if user.profile.gender == "Male"
bmr = 66 + ( 13.7 * self.body_weight_lbs / IN_KG ) + ( 5 * ( user.profile.height_in_feets * FT_IN_INCHES + user.profile.height_in_inches ) * IN_CM ) - ( age * 6.8 )
elsif user.profile.gender == "Female"
bmr = 665 + ( 9.6 * self.body_weight_lbs / IN_KG ) + ( 1.8 * ( user.profile.height_in_feets * FT_IN_INCHES + user.profile.height_in_inches ) * IN_CM ) - ( 4.7 * age )
end
activity_factor = user.tdee.activity_lvl[ACTIVITY_FACTOR_REGEX]
self.tdee = bmr * activity_factor.to_f
self.tdee_calc_type_used = "H-B"
elsif user.tdee.tdee_calc_type == "Katch-McArdle"
bmr = 370 + ( 21.6 * self.lbm_lbs / IN_KG )
activity_factor = user.tdee.activity_lvl[ACTIVITY_FACTOR_REGEX]
self.tdee = bmr * activity_factor.to_f
self.tdee_calc_type_used = "K-M"
end
end
user.profilewould benilalso looking at yourprogress_chartmodel are you sure that lbm_lbs is defined inprofileand notprogress_chart– Viren Jul 9 '12 at 3:01