Sha256: b2369457905c382da0b12c475969f4aa4b48c9c7c49bc970a46bf6444aa4705a

Contents?: true

Size: 287 Bytes

Versions: 1

Compression:

Stored size: 287 Bytes

Contents

class Earthworm < ActiveRecord::Base
  belongs_to :dirt
  
  # Earthworms have been known to complain if they're left on their deathbeds without any dirt
  before_destroy :complain!
  
  def complain!
    raise "Where's my dirt?!" if Dirt.not_deleted.find(self.dirt_id).nil?
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
permanent_records-2.3.0 test/earthworm.rb