actionmailer-callbacks 0.0.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +0,0 @@
1
- module Flag
2
- ACCESSORS = :before_create, :after_create, :before_deliver, :after_deliver,
3
- :create_before_block_call, :create_after_block_call,
4
- :deliver_before_block_call, :deliver_after_block_call
5
-
6
- mattr_accessor *ACCESSORS
7
-
8
- def self.reset
9
- ACCESSORS.each do |accessor|
10
- send "#{accessor}=", nil
11
- end
12
- end
13
-
14
- def self.included
15
- raise 'Not to be included anywhere!'
16
- end
17
-
18
- def self.extended
19
- included
20
- end
21
- end