Skip to content

Commit 9375d99

Browse files
authored
Add actionmailer test dependency to fix test suite (#92)
1 parent b33f034 commit 9375d99

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ gemspec
44

55
gem "sqlite3"
66
gem "debug", ">= 1.0.0"
7+
8+
group :test do
9+
gem "actionmailer", ">= 6.0.0"
10+
end

Gemfile.lock

+16
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ PATH
77
GEM
88
remote: https://rubygems.org/
99
specs:
10+
actionmailer (6.1.4.1)
11+
actionpack (= 6.1.4.1)
12+
actionview (= 6.1.4.1)
13+
activejob (= 6.1.4.1)
14+
activesupport (= 6.1.4.1)
15+
mail (~> 2.5, >= 2.5.4)
16+
rails-dom-testing (~> 2.0)
1017
actionpack (6.1.4.1)
1118
actionview (= 6.1.4.1)
1219
activesupport (= 6.1.4.1)
@@ -20,6 +27,9 @@ GEM
2027
erubi (~> 1.4)
2128
rails-dom-testing (~> 2.0)
2229
rails-html-sanitizer (~> 1.1, >= 1.2.0)
30+
activejob (6.1.4.1)
31+
activesupport (= 6.1.4.1)
32+
globalid (>= 0.3.6)
2333
activesupport (6.1.4.1)
2434
concurrent-ruby (~> 1.0, >= 1.0.2)
2535
i18n (>= 1.6, < 2)
@@ -33,6 +43,8 @@ GEM
3343
irb
3444
reline (>= 0.2.7)
3545
erubi (1.10.0)
46+
globalid (1.0.0)
47+
activesupport (>= 5.0)
3648
i18n (1.8.11)
3749
concurrent-ruby (~> 1.0)
3850
io-console (0.5.9)
@@ -41,7 +53,10 @@ GEM
4153
loofah (2.12.0)
4254
crass (~> 1.0.2)
4355
nokogiri (>= 1.5.9)
56+
mail (2.7.1)
57+
mini_mime (>= 0.1.1)
4458
method_source (1.0.0)
59+
mini_mime (1.1.2)
4560
mini_portile2 (2.6.1)
4661
minitest (5.14.4)
4762
nokogiri (1.12.5)
@@ -75,6 +90,7 @@ PLATFORMS
7590
ruby
7691

7792
DEPENDENCIES
93+
actionmailer (>= 6.0.0)
7894
debug (>= 1.0.0)
7995
sqlite3
8096
tailwindcss-rails!

0 commit comments

Comments
 (0)