-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appraisals
40 lines (34 loc) · 919 Bytes
/
Appraisals
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
appraise 'rails_7.0' do
gem 'rails', '~> 7.0.0'
gem 'sqlite3', '~> 1.5.0'
# Fix: LoadError: cannot load such file -- base64
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0") }' do
gem 'base64'
gem 'bigdecimal'
gem 'mutex_m'
gem 'drb'
gem 'logger'
gem 'pstore'
gem 'ostruct'
end
end
appraise 'rails_7.1' do
gem 'rails', '~> 7.1.0'
gem 'sqlite3', '~> 1.5.0'
# Fix:
# warning: logger was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0.
# Add logger to your Gemfile or gemspec.
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0") }' do
gem 'logger'
gem 'pstore'
gem 'ostruct'
end
end
appraise 'rails_7.2' do
gem 'rails', '~> 7.2.0'
gem 'sqlite3', '~> 1.5.0'
end
appraise 'rails_8.0' do
gem 'rails', '~> 8.0.0'
end