Skip to content

Instantly share code, notes, and snippets.

View tamersalama's full-sized avatar

Tamer Salama tamersalama

View GitHub Profile
@tamersalama
tamersalama / ActsAsSnapshot
Created January 26, 2012 21:21
Resourcing - Snapshotting
require_dependency 'acts_as_snapshot'
module ActsAsSnapshot
module ActiveRecord
def self.included(base)
base.extend(ActsAsSnapshot::ActiveRecord::ClassMethods)
end