Guest User

Untitled

a guest
Apr 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class EladIsAwesome < ActiveRecord::Base
  2.  
  3. attr_accessoer :price_in_dollars
  4.  
  5. def helpers
  6. ActionView.new.helpers
  7. end
  8.  
  9. def price
  10. helpers.number_with_delimiter(price_in_dollars) # Just to fucking print 1,000 instead of 1000
  11. end
  12. end
Add Comment
Please, Sign In to add comment