Sha256: 3420079acec5686b27d8793e37cfb02f61d5e914cdc6aa2c1d882ba34d8c0bc3
Contents?: true
Size: 897 Bytes
Versions: 6
Compression:
Stored size: 897 Bytes
Contents
class Response < ActiveRecord::Base include ActionView::Helpers::SanitizeHelper # Associations belongs_to :response_set belongs_to :question belongs_to :answer # Validations validates_presence_of :response_set_id, :question_id, :answer_id acts_as_response # includes "as" instance method def selected !self.new_record? end alias_method :selected?, :selected def selected=(value) true end def correct? question.correct_answer_id.nil? or self.answer.response_class != "answer" or (question.correct_answer_id.to_i == answer_id.to_i) end def to_s # used in dependency_explanation_helper if self.answer.response_class == "answer" and self.answer_id return self.answer.text else return "#{(self.string_value || self.text_value || self.integer_value || self.float_value || nil).to_s}" end end end
Version data entries
6 entries across 6 versions & 1 rubygems