nuntius 1.3.19 → 1.4.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.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/app/jobs/nuntius/messenger_job.rb +3 -1
- data/app/messengers/nuntius/base_messenger.rb +3 -1
- data/config/locales/nl.yml +1 -0
- data/lib/nuntius/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96231ee66f145c33c7c1fea7669be34a28d03c4c8f802cee010c984ad97f30c7
|
4
|
+
data.tar.gz: 98c827211fc8a8082710352838744ecb7b646ef4083493eb7078059b1627471b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3c2ba2b4663c73fd4ac849b0a94878646b1f32c743be1c7f1db8f9529934920497abb54345f7d35b56f7cd682ecbc710944f3bd89c9a7444f7878b7967b79d4
|
7
|
+
data.tar.gz: d54a2dd92af1f92cc40886c4be3bdfea123bdcb9f451abca15b919258f010b2363bc404b3f6f0a7c1f78bf1fb417dc65f0328fca12d98e7c38e9f381a44c963d
|
data/README.md
CHANGED
@@ -60,7 +60,11 @@ Additionally you need to define an extension of the Nuntius::BaseMessenger for t
|
|
60
60
|
```ruby
|
61
61
|
class CarMessenger < Nuntius::BaseMessenger
|
62
62
|
def your_event(car, params)
|
63
|
-
# your optional logic here
|
63
|
+
# your optional logic here, you could add attachments here
|
64
|
+
pdf = ApplicationController.renderer.new(http_host: object.account.hostname, https: true).render(template: "commercial_invoice/show", formats: [:pdf], assigns: {order: object})
|
65
|
+
|
66
|
+
attachments << {content: StringIO.new(pdf), content_type: "application/pdf", filename: "commercial_invoice.pdf"}
|
67
|
+
# Return false here if you don't want the message to be sent
|
64
68
|
end
|
65
69
|
end
|
66
70
|
```
|
@@ -9,7 +9,9 @@ module Nuntius
|
|
9
9
|
messenger = Nuntius::BaseMessenger.messenger_for_obj(obj).new(obj, event, params)
|
10
10
|
return unless messenger.is_a?(Nuntius::CustomMessenger) || messenger.respond_to?(event.to_sym)
|
11
11
|
|
12
|
-
messenger.call
|
12
|
+
result = messenger.call
|
13
|
+
return if result == false
|
14
|
+
|
13
15
|
templates = messenger.templates
|
14
16
|
messenger.dispatch(templates) if templates.present?
|
15
17
|
end
|
@@ -22,9 +22,11 @@ module Nuntius
|
|
22
22
|
# Calls the event method on the messenger
|
23
23
|
def call
|
24
24
|
select_templates
|
25
|
+
result = nil
|
25
26
|
run_callbacks(:action) do
|
26
|
-
send(@event.to_sym, @object, @params) if respond_to?(@event.to_sym)
|
27
|
+
result = send(@event.to_sym, @object, @params) if respond_to?(@event.to_sym)
|
27
28
|
end
|
29
|
+
result
|
28
30
|
end
|
29
31
|
|
30
32
|
# Turns the templates in messages, and dispatches the messages to transports
|
data/config/locales/nl.yml
CHANGED
data/lib/nuntius/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nuntius
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apnotic
|