Sha256: a900a31ca513102415933280f9fcb9d4c84a845ce80612d424066a3b035c4988
Contents?: true
Size: 268 Bytes
Versions: 38
Compression:
Stored size: 268 Bytes
Contents
class Album include Mongoid::Document belongs_to :artist before_destroy :set_parent_name attr_accessor :before_add_called private def set_parent_name artist.name = "destroyed" if artist end def set_parent_name_fail throw(:abort) end end
Version data entries
38 entries across 36 versions & 2 rubygems