mail_plugger 1.7.3 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf8b1a249b67a04383d9f108af0edf1a39084974086c8bd5788404a4e1159b23
4
- data.tar.gz: 6b9aeac4d5186bcbd4202f079c041e126825aea5a97eea0c01b922fc68039461
3
+ metadata.gz: 41ba6b9cbc9cad56cd2a40460a033e57c4e0145692a1719a067163687bcfe879
4
+ data.tar.gz: 70c7b6ef2296a89f0a74060d26d948184e3a81c603e985106e16b97b58a0b290
5
5
  SHA512:
6
- metadata.gz: 9bf19f53143c5ee38ebe1448acf2297d5279a61747ce536e2d5279a98bf46dbc55cd9a0d8e141b1407ee219a0a9b320317fef856b5c5b42fc1723190d2410fff
7
- data.tar.gz: ef25bd9caae228c366ff0890c5762aaef326dfcca26fed1d9ce299ef3ff98cf718bd8e7c9fed82dd747eefed7374115cac823ac14a7da250166118b5f0d2eb44
6
+ metadata.gz: '08bf689c61d65690ce9dbb2fb90a3b15e8bfebd4b9374e71e6f4c451407a0c34bb964dad68c9945ce029f754cb9f4e525a0b280c014a706032bd3e0d4a1820ba'
7
+ data.tar.gz: a2b45c141ff8a7940b3ed50553fd52d5c0859312c8fc14e5787e4884d7ceacd1baccd48a3412b5036bc0065cef46c79e00d6c22d7ba6ed7d7ff61916246ba42c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Change log
2
2
 
3
+ ## 1.7.5 (2024-02-20)
4
+
5
+ ### Changes
6
+
7
+ * Add Ruby 3.3 support.
8
+ * Update MailGrabber to version 1.3.5.
9
+ * Update appraisal gem with the official version.
10
+ * Update bundler and gems.
11
+
12
+
13
+ ## 1.7.4 (2023-05-19)
14
+
15
+ ### Changes
16
+
17
+ * Add Ruby 3.2 support.
18
+ * Update MailGrabber to version 1.3.4.
19
+ * Update appraisal gem from github to fix issues.
20
+ * Update bundler and gems.
21
+
22
+
3
23
  ## 1.7.3 (2023-03-19)
4
24
 
5
25
  ### Changes
@@ -299,10 +299,10 @@ module FakePlugger
299
299
  @response = settings[:fake_plugger_response] if @response.nil?
300
300
 
301
301
  %w[debug raw_message use_mail_grabber].each do |variable_name|
302
- next unless instance_variable_get("@#{variable_name}").nil?
302
+ next unless instance_variable_get(:"@#{variable_name}").nil?
303
303
 
304
304
  instance_variable_set(
305
- "@#{variable_name}",
305
+ :"@#{variable_name}",
306
306
  settings[:"fake_plugger_#{variable_name}"] || false
307
307
  )
308
308
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MailPlugger
4
- VERSION = '1.7.3'
4
+ VERSION = '1.7.5'
5
5
  end
data/lib/mail_plugger.rb CHANGED
@@ -145,9 +145,9 @@ module MailPlugger
145
145
  delivery_options
146
146
  delivery_settings
147
147
  ].each do |method|
148
- define_method "#{method}=" do |value|
149
- variable = instance_variable_get("@#{method}")
150
- variable = instance_variable_set("@#{method}", {}) if variable.nil?
148
+ define_method :"#{method}=" do |value|
149
+ variable = instance_variable_get(:"@#{method}")
150
+ variable = instance_variable_set(:"@#{method}", {}) if variable.nil?
151
151
  variable[@delivery_system] = value
152
152
  end
153
153
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mail_plugger
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Norbert Szivós
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-19 00:00:00.000000000 Z
11
+ date: 2024-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mail