Skip to content

Instantly share code, notes, and snippets.

@Ravenna
Created November 17, 2011 17:57
Show Gist options
  • Save Ravenna/1373911 to your computer and use it in GitHub Desktop.
Save Ravenna/1373911 to your computer and use it in GitHub Desktop.
mailer send
class Weapon < ActiveRecord::Base
belongs_to :zombie
before_save :check_ammo
def check_ammo
if self.ammo == 3
WeaponMailer.check_ammo(self, self.zombie).deliver
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment