silent_bob 0.2.0 → 0.2.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 986768288679ee58d74b76f8b1de40575a1756c9165163c4aaff86cf095098d3
4
- data.tar.gz: fe01c69c986953d0dd65c7ad0fe97a9f2c0af635019ad5ae2997c70d0205f755
3
+ metadata.gz: 32eb6004a8e892ed5eb61d3faecd2aa246dbf349ce0f0ef5500bd0e9b34b621a
4
+ data.tar.gz: b4e694d2bac987d1cd237767c226e3fef21ada50c891084deb69311906bccf82
5
5
  SHA512:
6
- metadata.gz: 45f4414f378dfcadd0db0c698c3a8631fcd9865ecce565908f10e51d3c16ed80a173fdf632d5a91b13b2ef241baa1cfd20b0b9adf6ed8d7bcad83ec9e44f96fa
7
- data.tar.gz: 4b30e0ef743490010ca3a6b59e9844bda527959797894e5393f45a1e0639c6e866fec5e5985ea6fd25bbac99c173faeedde3e427d87ba61e98eba972a560754d
6
+ metadata.gz: 45cfef0803c0b129260ec08420a4b4be3e396658a97f2bfb937200c7e4e94d1b0573beef1ac808013ef2d00e86cd9d014001a8eb3562de268eda5c2e81d76b12
7
+ data.tar.gz: 5cc607a6a99cb383a2b9e17c53d81f358f11d98bbf1fb6cf3f5545bf19e9f95df34289eecf2d95a8feb0d9ab5a5af907bc6a01d58c22b177c581d0d192b0609c
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- silent_bob (0.2.0)
4
+ silent_bob (0.2.7)
5
5
  http (~> 4.3)
6
6
  mail (~> 2.5)
7
7
 
data/README.md CHANGED
@@ -47,7 +47,7 @@ SilentBob::SmsSender.new(to: '78881214455', body: 'sms-text', configuration: con
47
47
  To connect `SilentBob` to `ActionMailer`
48
48
 
49
49
  ```ruby
50
- ActionMailer::Base.add_delivery_method :revo_jay, SilentBob::Delivery
50
+ ActionMailer::Base.add_delivery_method :silent_bob_delivery, SilentBob::Delivery
51
51
  ```
52
52
 
53
53
  In this case `SilentBob::ConfigurationKeeper.default_config` **must be initialized**
@@ -2,6 +2,7 @@ require 'silent_bob/version'
2
2
  require 'openssl'
3
3
  require 'http'
4
4
  require 'base64'
5
+ require 'mail'
5
6
  require 'silent_bob/configuration'
6
7
  require 'silent_bob/configuration_keeper'
7
8
  require 'silent_bob/delivery'
@@ -44,8 +44,16 @@ module SilentBob
44
44
 
45
45
  def handle_attachments(attachments)
46
46
  attachments&.map do |attachment|
47
- { name: attachment[:name], body: Base64.encode64(attachment[:body]) }
47
+ {
48
+ name: attachment[:name],
49
+ body: Base64.encode64(attachment_body(attachment))
50
+ }
48
51
  end
49
52
  end
53
+
54
+ def attachment_body(attachment)
55
+ body = attachment[:body]
56
+ body.is_a?(Mail::Part) ? body.decoded&.to_s : body.to_s
57
+ end
50
58
  end
51
59
  end
@@ -1,3 +1,3 @@
1
1
  module SilentBob
2
- VERSION = '0.2.0'.freeze
2
+ VERSION = '0.2.7'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: silent_bob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Lobanov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-08 00:00:00.000000000 Z
11
+ date: 2020-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http