-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathAppraisals
More file actions
29 lines (25 loc) · 768 Bytes
/
Appraisals
File metadata and controls
29 lines (25 loc) · 768 Bytes
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
# frozen_string_literal: true
appraise "sidekiq-8.0.x" do
group :test do
gem "sidekiq", "~> 8.0.0"
# Sidekiq Pro license must be set in global bundler config
# or in BUNDLE_GEMS__CONTRIBSYS__COM env variable
if Bundler.settings["gems.contribsys.com"]&.include?(":")
source "https://gems.contribsys.com/" do
gem "sidekiq-pro", "~> 8.0.0"
end
end
end
end
appraise "sidekiq-8.1.x" do
group :test do
gem "sidekiq", "~> 8.1.0"
# Sidekiq Pro license must be set in global bundler config
# or in BUNDLE_GEMS__CONTRIBSYS__COM env variable
if Bundler.settings["gems.contribsys.com"]&.include?(":")
source "https://gems.contribsys.com/" do
gem "sidekiq-pro", "~> 8.1.0"
end
end
end
end