class Parrot

Public Instance Methods

cancel_save_callback_method() click to toggle source
# File activerecord/test/models/parrot.rb, line 15
def cancel_save_callback_method
  throw(:abort)
end
increment_updated_count() click to toggle source
# File activerecord/test/models/parrot.rb, line 20
def increment_updated_count
  self.updated_count += 1
end