no_notifier_needed 2.3.3 → 2.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/no_notifier_needed/send.rb +1 -1
- data/no_notifier_needed.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.4
|
@@ -13,7 +13,7 @@ module NoNotifierNeeded
|
|
13
13
|
def send_at(what_time, which_email, *args)
|
14
14
|
email_hash = translate_to_hash(which_email, args)
|
15
15
|
time_from_now = what_time.is_a?(Time) ? what_time : Chronic.parse(what_time)
|
16
|
-
|
16
|
+
Resque.enqueue_at(time_from_now, EmailProcessor, email_hash)
|
17
17
|
end
|
18
18
|
|
19
19
|
private
|
data/no_notifier_needed.gemspec
CHANGED