I would like to write a few custom methods for my model, but keep getting an error saying the method is not defined for the model (playing in the console).
For example, I have a product model, and I want a method called stocked? that will return 'yes' or 'no' depending on an in_stock boolean field for the model: class Product < ActiveRecord::Base def self.stocked? self.in_stock ? 'yes' : 'no' end end How would I fix this?... -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

