2007-11-26 17:45:43 -05:00
|
|
|
class Ship < ActiveRecord::Base
|
|
|
|
self.record_timestamps = false
|
2009-01-31 20:44:30 -05:00
|
|
|
|
2009-11-06 17:53:33 -05:00
|
|
|
belongs_to :pirate
|
2009-12-28 15:08:20 -05:00
|
|
|
belongs_to :update_only_pirate, :class_name => 'Pirate'
|
2010-05-18 05:28:26 -04:00
|
|
|
has_many :parts, :class_name => 'ShipPart'
|
2009-01-31 20:44:30 -05:00
|
|
|
|
2010-05-18 05:28:26 -04:00
|
|
|
accepts_nested_attributes_for :parts, :allow_destroy => true
|
2009-02-08 08:23:35 -05:00
|
|
|
accepts_nested_attributes_for :pirate, :allow_destroy => true, :reject_if => proc { |attributes| attributes.empty? }
|
2009-12-28 15:08:20 -05:00
|
|
|
accepts_nested_attributes_for :update_only_pirate, :update_only => true
|
2009-01-31 20:44:30 -05:00
|
|
|
|
|
|
|
validates_presence_of :name
|
2010-01-08 14:47:49 -05:00
|
|
|
|
|
|
|
attr_accessor :cancel_save_from_callback
|
|
|
|
before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
|
|
|
|
def cancel_save_callback_method
|
|
|
|
false
|
|
|
|
end
|
2009-02-08 08:23:35 -05:00
|
|
|
end
|