sunabamail 0.1.2 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c4339fd772c1bead6c12dbb69aa44c4271c1080a6bc15b8f0d6939609e052b2
4
- data.tar.gz: 66ff4d243f7c392a25b8c11803d4133ef1ab2eaf2b3658df9165e5589a7c2790
3
+ metadata.gz: ceab1c7c63204a0377296af151875da81ec4853a16f577853dcdd0dbf26ef4e4
4
+ data.tar.gz: a57f7f55ebcca51096938ade0a81b01919481854a97d26483020d4c3cbccfaf4
5
5
  SHA512:
6
- metadata.gz: 87f258c54ba3f6a7ca957b52abc8ba088454365518d8120858e373247787617c2900f387254377f829e4aad7e8622e087b39f12f04244d11b87ad873c73b3b45
7
- data.tar.gz: f2cb19518101926daca43e79493dd0b560b98eddb40d7e8577ce4b8237d2ae5817975969bc4e30515466f9463d94f4454bc108b5fe506b90e33485718fc293db
6
+ metadata.gz: 83720826cb6d60d10964c11aecf63dbb6f0d236b2512825bcbb2c68952d0373ae3a3e4736f16a3234d959ad327303b62a8877e4926e12b6024e5805cc7c40ede
7
+ data.tar.gz: f53c845a2cbc76ca203b36e5a969a9817ec9b0c54ba89365d471fa427278888752342a5c8ba31f89bd33f82a94f2ab9e1e4679d8b7d7a3e6bc6903821284e2d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.3] - 2026-07-26
4
+
5
+ - fix: Deletion fails if ApplicationController is not defined.
6
+ - add engine test.
7
+
3
8
  ## [0.1.2] - 2026-05-08
4
9
 
5
10
  - fix mailer view
@@ -1,4 +1,4 @@
1
- class Sunabamail::Messages::AllsController < ApplicationController
1
+ class Sunabamail::Messages::AllsController < Sunabamail::ApplicationController
2
2
  def destroy
3
3
  Sunabamail::Message.destroy_all
4
4
  redirect_to messages_path, notice: "destroyed"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sunabamail
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunabamail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - hamajyotan
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  requirements: []
120
- rubygems_version: 3.6.7
120
+ rubygems_version: 4.0.3
121
121
  specification_version: 4
122
122
  summary: A drop-in Action Mailer delivery method that stores emails in the database
123
123
  instead of sending them.