Sha256: fb1e2a136da06633ecd3408105a39f54efd27e91c4448532447b83e62028ae56
Contents?: true
Size: 306 Bytes
Versions: 47
Compression:
Stored size: 306 Bytes
Contents
class Ship < ActiveRecord::Base self.record_timestamps = false belongs_to :pirate has_many :parts, :class_name => 'ShipPart', :autosave => true accepts_nested_attributes_for :pirate, :allow_destroy => true, :reject_if => proc { |attributes| attributes.empty? } validates_presence_of :name end
Version data entries
47 entries across 46 versions & 11 rubygems