We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e5cc7a commit 60c9643Copy full SHA for 60c9643
Appraisals
@@ -1,6 +1,6 @@
1
# frozen_string_literal: true
2
3
-def appgen(gems) # rubocop:disable Metrics/CyclomaticComplexity
+def appgen(gems) # rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
4
description = gems.map{ |name, version| "#{name} #{version}" }.join(', ')
5
appraise "ruby-#{RUBY_VERSION[/\d+\.\d+/]} #{description}" do
6
gems.each do |name, version|
@@ -21,6 +21,12 @@ def appgen(gems) # rubocop:disable Metrics/CyclomaticComplexity
21
gem 'loofah', '< 2.21.0'
22
end
23
24
+ if RUBY_VERSION >= '3.4'
25
+ gem 'base64'
26
+ gem 'bigdecimal'
27
+ gem 'mutex_m'
28
+ end
29
+
30
gem 'tzinfo'
31
32
gem 'sprockets-rails' if gems['railties'] != '~> 3.2' && !gems['sprockets-rails']
0 commit comments