-
Notifications
You must be signed in to change notification settings - Fork 78
/
Appraisals
43 lines (37 loc) · 1.17 KB
/
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
41
42
43
# frozen_string_literal: true
appraise "sidekiq-7.0.x" do
group :test do
gem "sidekiq", "~> 7.0.0"
# Sidekiq Pro license must be set in global bundler config
# or in BUNDLE_GEMS__CONTRIBSYS__COM env variable
install_if "-> { Bundler.settings['gems.contribsys.com']&.include?(':') }" do
source "https://gems.contribsys.com/" do
gem "sidekiq-pro", "~> 7.0.0"
end
end
end
end
appraise "sidekiq-7.1.x" do
group :test do
gem "sidekiq", "~> 7.1.0"
# Sidekiq Pro license must be set in global bundler config
# or in BUNDLE_GEMS__CONTRIBSYS__COM env variable
install_if "-> { Bundler.settings['gems.contribsys.com']&.include?(':') }" do
source "https://gems.contribsys.com/" do
gem "sidekiq-pro", "~> 7.1.0"
end
end
end
end
appraise "sidekiq-7.2.x" do
group :test do
gem "sidekiq", "~> 7.2.0"
# Sidekiq Pro license must be set in global bundler config
# or in BUNDLE_GEMS__CONTRIBSYS__COM env variable
install_if "-> { Bundler.settings['gems.contribsys.com']&.include?(':') }" do
source "https://gems.contribsys.com/" do
gem "sidekiq-pro", "~> 7.2.0"
end
end
end
end