File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 42
42
- ' 3.1'
43
43
- ' head'
44
44
rails :
45
+ - rails_8.0
45
46
- rails_7.2
46
47
- rails_7.1
47
48
- rails_7.0
49
+ exclude :
50
+ - ruby : ' 3.1'
51
+ rails : ' rails_8.0'
48
52
49
53
env : # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
50
54
BUNDLE_GEMFILE : ${{ github.workspace }}/gemfiles/${{ matrix.rails }}.gemfile
Original file line number Diff line number Diff line change 2
2
3
3
appraise 'rails_7.0' do
4
4
gem 'rails' , '~> 7.0.0'
5
+ gem 'sqlite3' , '~> 1.5.0'
5
6
6
7
# Fix: LoadError: cannot load such file -- base64
7
8
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0") }' do
15
16
16
17
appraise 'rails_7.1' do
17
18
gem 'rails' , '~> 7.1.0'
19
+ gem 'sqlite3' , '~> 1.5.0'
18
20
19
21
# Fix:
20
22
# warning: logger was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0.
26
28
27
29
appraise 'rails_7.2' do
28
30
gem 'rails' , '~> 7.2.0'
31
+ gem 'sqlite3' , '~> 1.5.0'
32
+ end
33
+
34
+ appraise 'rails_8.0' do
35
+ gem 'rails' , '~> 8.0.0'
29
36
end
Original file line number Diff line number Diff line change @@ -21,5 +21,5 @@ gem 'rubocop-rspec_rails'
21
21
gem 'simplecov'
22
22
gem 'sinatra'
23
23
gem 'sprockets-rails'
24
- gem 'sqlite3' , '~> 1.5 .0'
24
+ gem 'sqlite3' , '~> 2.1 .0'
25
25
gem 'timecop'
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
6
+ gem "database_cleaner"
7
+ gem "guard-rspec"
8
+ gem "haml"
9
+ gem "pry"
10
+ gem "rack-test"
11
+ gem "rake"
12
+ gem "rspec-rails"
13
+ gem "rubocop"
14
+ gem "rubocop-performance"
15
+ gem "rubocop-rake"
16
+ gem "rubocop-rspec"
17
+ gem "rubocop-rspec_rails"
18
+ gem "simplecov"
19
+ gem "sinatra"
20
+ gem "sprockets-rails"
21
+ gem "sqlite3", "~> 2.1.0"
22
+ gem "timecop"
23
+ gem "rails", "~> 8.0.0"
24
+
25
+ gemspec path: "../"
You can’t perform that action at this time.
0 commit comments