activemail 1.0.1 → 1.0.2
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 +10 -0
- data/lib/activemail/version.rb +1 -1
- metadata +2 -2
- /data/app/helpers/{activemail → active_mail}/styles_helper.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d23d0cbbba6b06d9492800ec108e2156d8abf4714090bb21a7c2b4b0a3383084
|
|
4
|
+
data.tar.gz: 224c60368f2c11d1f9aea2cbf8ad63dc4ad67a90f0f48225cfb4487f87e73931
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e01ccdbee061bd112b9d743bcf9899de50f4dccff6c758f69dd041d5070002f7172b89e3dfc333f6db5dedfbba20816c2b09f9c6d17fc5aad34a3a4c5821578
|
|
7
|
+
data.tar.gz: 8d9528d101254d8959db9fe2b2c43563305f55eb633b671de1db0787c2f2e37eeb0652df8269cd8bb29a81ed99c16532eff918ec776a71d7a6d5e5148be3c620
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project are documented here.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.2] - 2026-06-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Moved the framework styles helper to `app/helpers/active_mail/` so the host
|
|
13
|
+
application's Zeitwerk loader resolves it to `ActiveMail::StylesHelper`. Under
|
|
14
|
+
the previous `app/helpers/activemail/` path the default inflector expected
|
|
15
|
+
`Activemail::StylesHelper`, making the engine's `helper ActiveMail::StylesHelper`
|
|
16
|
+
raise `NameError` at boot in any mounting app.
|
|
17
|
+
|
|
8
18
|
## [1.0.1] - 2026-06-15
|
|
9
19
|
|
|
10
20
|
### Changed
|
data/lib/activemail/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activemail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Advitam
|
|
@@ -70,7 +70,7 @@ files:
|
|
|
70
70
|
- app/assets/stylesheets/activemail/_settings.scss
|
|
71
71
|
- app/assets/stylesheets/activemail/_utilities.scss
|
|
72
72
|
- app/assets/stylesheets/activemail/activemail.scss
|
|
73
|
-
- app/helpers/
|
|
73
|
+
- app/helpers/active_mail/styles_helper.rb
|
|
74
74
|
- app/views/layouts/activemail/_footer.html.inky-erb
|
|
75
75
|
- app/views/layouts/activemail/_head.html.inky-erb
|
|
76
76
|
- app/views/layouts/activemail/mailer.html.inky-erb
|
|
File without changes
|