Sha256: 82017d2534a2113e8fb96ab93944da1a57ff58c2d2b361e507ba0f380bbd3e71
Contents?: true
Size: 826 Bytes
Versions: 2
Compression:
Stored size: 826 Bytes
Contents
module AfterCommit def self.committed_records @@committed_records ||= [] end def self.committed_records=(committed_records) @@committed_records = committed_records end def self.committed_records_on_create @@committed_records_on_create ||= [] end def self.committed_records_on_create=(committed_records) @@committed_records_on_create = committed_records end def self.committed_records_on_update @@committed_records_on_update ||= [] end def self.committed_records_on_update=(committed_records) @@committed_records_on_update = committed_records end def self.committed_records_on_destroy @@committed_records_on_destroy ||= [] end def self.committed_records_on_destroy=(committed_records) @@committed_records_on_destroy = committed_records end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
integralimpressions-after_commit-0.0.1 | lib/after_commit/after_commit.rb |
yipdw-after_commit-0.0.0 | lib/after_commit.rb |