Advertisement
Guest User

MI scorereset

a guest
Apr 27th, 2015
3
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.24 KB | None | 0 0
  1. def refac(user_id,score)
  2.   score_card = RestaurantService::Promotion::MumbaiIndiansScorecard.where(:user_id => user_id).entries
  3.   diff = (score*10) - score_card.match3
  4.   score_card.match3 += diff
  5.   score_card.total += diff
  6.   score_card.save
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement