File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
actionmailbox/lib/action_mailbox Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ def receive_inbound_email_from_fixture(*args)
29
29
create_inbound_email_from_fixture ( *args ) . tap ( &:route )
30
30
end
31
31
32
- # Create an +InboundEmail+ from fixture using the same arguments as +create_inbound_email_from_mail+
33
- # and immediately route it to processing.
32
+ # Create an +InboundEmail+ using the same arguments as +create_inbound_email_from_mail+ and immediately route it to
33
+ # processing.
34
34
def receive_inbound_email_from_mail ( **kwargs )
35
35
create_inbound_email_from_mail ( **kwargs ) . tap ( &:route )
36
36
end
37
37
38
- # Create an +InboundEmail+ from fixture using the same arguments as +create_inbound_email_from_source+
39
- # and immediately route it to processing.
40
- def receive_inbound_email_from_source ( ** kwargs )
41
- create_inbound_email_from_source ( ** kwargs ) . tap ( &:route )
38
+ # Create an +InboundEmail+ using the same arguments as +create_inbound_email_from_source+ and immediately route it
39
+ # to processing.
40
+ def receive_inbound_email_from_source ( *args )
41
+ create_inbound_email_from_source ( *args ) . tap ( &:route )
42
42
end
43
43
end
44
44
end
You can’t perform that action at this time.
0 commit comments