actionmailer 7.2.2.2 → 7.2.3
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/CHANGELOG.md +5 -0
- data/README.rdoc +1 -1
- data/lib/action_mailer/base.rb +2 -7
- data/lib/action_mailer/gem_version.rb +2 -2
- data/lib/action_mailer/inline_preview_interceptor.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea95f7b9ad1d651201aa13e40109d61ab1403758f1765d567d8e76451b4d3b6a
|
|
4
|
+
data.tar.gz: b4818f516ae894b13d0987b8e6fd0f0230372520cd41c1f5a7018cf2ee4a2e22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f62423584f6958284713572300ef0fbd90ab2a9ff80778fe4063c283d348ce38e481bb3a2817e02ed508050dd792ea438f00f9b8ea1830fe0a85997d9fe7fbc
|
|
7
|
+
data.tar.gz: ec7a1e310e44cf49424ec0dd3adb81486f0811ec8d5078d44352fbecde3c1417342681bbba91a1d4ce232ec18661c5feaa02eb412c508a5f6c786161b5968350
|
data/CHANGELOG.md
CHANGED
data/README.rdoc
CHANGED
|
@@ -136,6 +136,6 @@ Bug reports for the Ruby on \Rails project can be filed here:
|
|
|
136
136
|
|
|
137
137
|
* https://github.com/rails/rails/issues
|
|
138
138
|
|
|
139
|
-
Feature requests should be discussed on the
|
|
139
|
+
Feature requests should be discussed on the rubyonrails-core forum here:
|
|
140
140
|
|
|
141
141
|
* https://discuss.rubyonrails.org/c/rubyonrails-core
|
data/lib/action_mailer/base.rb
CHANGED
|
@@ -574,18 +574,13 @@ module ActionMailer
|
|
|
574
574
|
attr_writer :mailer_name
|
|
575
575
|
alias :controller_path :mailer_name
|
|
576
576
|
|
|
577
|
-
#
|
|
578
|
-
#
|
|
579
|
-
# config.action_mailer.default(from: "no-reply@example.org")
|
|
577
|
+
# Allows to set defaults through app configuration:
|
|
580
578
|
#
|
|
581
|
-
#
|
|
579
|
+
# config.action_mailer.default_options = { from: "no-reply@example.org" }
|
|
582
580
|
def default(value = nil)
|
|
583
581
|
self.default_params = default_params.merge(value).freeze if value
|
|
584
582
|
default_params
|
|
585
583
|
end
|
|
586
|
-
# Allows to set defaults through app configuration:
|
|
587
|
-
#
|
|
588
|
-
# config.action_mailer.default_options = { from: "no-reply@example.org" }
|
|
589
584
|
alias :default_options= :default
|
|
590
585
|
|
|
591
586
|
# Wraps an email delivery inside of ActiveSupport::Notifications instrumentation.
|
|
@@ -6,7 +6,7 @@ module ActionMailer
|
|
|
6
6
|
# = Action Mailer \InlinePreviewInterceptor
|
|
7
7
|
#
|
|
8
8
|
# Implements a mailer preview interceptor that converts image tag src attributes
|
|
9
|
-
# that use inline cid
|
|
9
|
+
# that use inline +cid:+ style URLs to +data:+ style URLs so that they are visible
|
|
10
10
|
# when previewing an HTML email in a web browser.
|
|
11
11
|
#
|
|
12
12
|
# This interceptor is enabled by default. To disable it, delete it from the
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actionmailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -15,56 +15,56 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 7.2.
|
|
18
|
+
version: 7.2.3
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 7.2.
|
|
25
|
+
version: 7.2.3
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: actionpack
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 7.2.
|
|
32
|
+
version: 7.2.3
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 7.2.
|
|
39
|
+
version: 7.2.3
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: actionview
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - '='
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 7.2.
|
|
46
|
+
version: 7.2.3
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - '='
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 7.2.
|
|
53
|
+
version: 7.2.3
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: activejob
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
58
|
- - '='
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 7.2.
|
|
60
|
+
version: 7.2.3
|
|
61
61
|
type: :runtime
|
|
62
62
|
prerelease: false
|
|
63
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
65
|
- - '='
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 7.2.
|
|
67
|
+
version: 7.2.3
|
|
68
68
|
- !ruby/object:Gem::Dependency
|
|
69
69
|
name: mail
|
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -133,10 +133,10 @@ licenses:
|
|
|
133
133
|
- MIT
|
|
134
134
|
metadata:
|
|
135
135
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
136
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.2.
|
|
137
|
-
documentation_uri: https://api.rubyonrails.org/v7.2.
|
|
136
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.2.3/actionmailer/CHANGELOG.md
|
|
137
|
+
documentation_uri: https://api.rubyonrails.org/v7.2.3/
|
|
138
138
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
139
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.2.
|
|
139
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.2.3/actionmailer
|
|
140
140
|
rubygems_mfa_required: 'true'
|
|
141
141
|
rdoc_options: []
|
|
142
142
|
require_paths:
|