-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppraisals
More file actions
35 lines (29 loc) · 1.05 KB
/
Appraisals
File metadata and controls
35 lines (29 loc) · 1.05 KB
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
# frozen_string_literal: true
appraise 'rails_7.2' do
gem 'rails', '~> 7.2.0'
gem 'sqlite3', '~> 1.5.0'
# Fix:
# warning: pstore was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0.
# Add pstore to your Gemfile or gemspec.
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.5.0") }' do
gem 'pstore'
end
end
appraise 'rails_8.0' do
gem 'rails', '~> 8.0.0'
# Fix:
# warning: pstore was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0.
# Add pstore to your Gemfile or gemspec.
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.5.0") }' do
gem 'pstore'
end
end
appraise 'rails_8.1' do
gem 'rails', '~> 8.1.0'
# Fix:
# warning: pstore was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0.
# Add pstore to your Gemfile or gemspec.
install_if '-> { Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.5.0") }' do
gem 'pstore'
end
end