Skip to content

Commit 6403a33

Browse files
authored
Add CI for 7.0 and 7.1 (#7)
* Add CI for 7.0 and 7.1
1 parent 5dd2a09 commit 6403a33

File tree

10 files changed

+67
-20
lines changed

10 files changed

+67
-20
lines changed

.github/workflows/ruby.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77

88
name: Tests
99

10-
on:
11-
push:
12-
branches: [ "main" ]
13-
pull_request:
14-
branches: [ "main" ]
10+
on: [push, pull_request]
1511

1612
permissions:
1713
contents: read
@@ -23,13 +19,14 @@ jobs:
2319
strategy:
2420
matrix:
2521
ruby-version: ['3.1', '3.2', '3.3']
22+
rails-version: ['gemfiles/rails_7.0.gemfile', 'gemfiles/rails_7.1.gemfile']
23+
24+
env:
25+
BUNDLE_GEMFILE: ${{ matrix.rails-version }}
2626

2727
steps:
2828
- uses: actions/checkout@v3
2929
- name: Set up Ruby
30-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
31-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
32-
# uses: ruby/setup-ruby@v1
3330
uses: ruby/setup-ruby@v1
3431
with:
3532
ruby-version: ${{ matrix.ruby-version }}

Appraisals

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
appraise "rails-7.0" do
2+
gem "rails", "~> 7.0.0"
3+
end
4+
5+
appraise "rails-7.1" do
6+
gem "rails", "~> 7.1.0"
7+
end

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ gem "sqlite3"
1212
gem "debug", ">= 1.0.0"
1313

1414
gem "rails-dom-testing"
15+
gem "appraisal"
16+

email_error_reporter.gemspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ Gem::Specification.new do |spec|
2222
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
2323
end
2424

25-
spec.add_dependency "rails", ">= 7.1.2"
25+
spec.required_ruby_version = '>= 3.1.0'
26+
spec.add_dependency "rails", ">= 7.0.0"
2627
end

gemfiles/rails_7.0.gemfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "puma"
6+
gem "sqlite3"
7+
gem "debug", ">= 1.0.0"
8+
gem "rails-dom-testing"
9+
gem "appraisal", group: :development
10+
gem "rails", "~> 7.0.0"
11+
12+
gemspec path: "../"

gemfiles/rails_7.1.gemfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "puma"
6+
gem "sqlite3"
7+
gem "debug", ">= 1.0.0"
8+
gem "rails-dom-testing"
9+
gem "appraisal", group: :development
10+
gem "rails", "~> 7.1.0"
11+
12+
gemspec path: "../"

test/dummy/config/application.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ class Application < Rails::Application
1313
# Please, add to the `ignore` list any other `lib` subdirectories that do
1414
# not contain `.rb` files, or that should not be reloaded or eager loaded.
1515
# Common ones are `templates`, `generators`, or `middleware`, for example.
16-
config.autoload_lib(ignore: %w(assets tasks))
16+
17+
# config.autoload_lib(ignore: %w(assets tasks))
1718

1819
# Configuration for the application, engines, and railties goes here.
1920
#

test/dummy/config/environments/development.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
# config.action_cable.disable_request_forgery_protection = true
7373

7474
# Raise error when a before_action's only/except options reference missing actions
75-
config.action_controller.raise_on_missing_callback_actions = true
75+
# config.action_controller.raise_on_missing_callback_actions = true
7676

7777
config.email_error_reporter.to = ["[email protected]"]
7878
end

test/dummy/config/environments/test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# config.action_view.annotate_rendered_view_with_filenames = true
6161

6262
# Raise error when a before_action's only/except options reference missing actions
63-
config.action_controller.raise_on_missing_callback_actions = true
63+
# config.action_controller.raise_on_missing_callback_actions = true
6464

6565
config.email_error_reporter.to = ["[email protected]"]
6666
end

test/subscriber_test.rb

+23-8
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,28 @@ class SubscriberTest < ActiveSupport::TestCase
1111
end
1212

1313
rescue TestError => e
14-
assert_enqueued_email_with EmailErrorReporter::ErrorMailer, :error, args: ->(args) {
15-
# TODO: find out, why args.first == e is false
16-
[
17-
args.first.message == e.message,
18-
args.first.backtrace == e.backtrace,
19-
args.first.class == e.class
20-
].all?
21-
}
14+
# matcher
15+
assert_enqueued_with(
16+
job: ActionMailer::MailDeliveryJob,
17+
args: ->(j) {
18+
[
19+
"EmailErrorReporter::ErrorMailer" == j[0],
20+
"error" == j[1],
21+
"deliver_now" == j[2],
22+
e.class == j[3][:args][0].class,
23+
{ handled: false, context: {}, severity: :error, source: rails_default_source } == j[3][:args][1],
24+
].all?
25+
}
26+
)
27+
end
28+
29+
private
30+
31+
def rails_default_source
32+
if Gem::Version.new(Rails.version) >= Gem::Version.new("7.1.0")
33+
"application"
34+
else
35+
nil
36+
end
2237
end
2338
end

0 commit comments

Comments
 (0)