-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (29 loc) · 1.14 KB
/
Gemfile
File metadata and controls
33 lines (29 loc) · 1.14 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
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
def location_for(place)
if place =~ /^((?:git[:@]|https:)[^#]*)#(.*)/
[{ :git => $1, :branch => $2, :require => false }]
elsif place =~ /^file:\/\/(.*)/
['>= 0', { :path => File.expand_path($1), :require => false }]
else
[place, { :require => false }]
end
end
gem 'artifactory'
gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.105')
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.86'
gem 'rubocop-rake', '~> 0.7'
gem 'vanagon', *location_for(ENV['VANAGON_LOCATION'] || 'https://github.com/openvoxproject/vanagon#main')
# Need to update the openssl gem on MacOS to avoid SSL errors. Doesn't hurt to have the newest
# for all platforms.
# https://www.rubyonmac.dev/certificate-verify-failed-unable-to-get-certificate-crl-openssl-ssl-sslerror
gem 'openssl' unless `uname -o`.chomp == 'Cygwin'
group(:development, optional: true) do
gem 'hashdiff', require: false
gem 'highline', require: false
gem 'parallel', require: false
end
group(:release, optional: true) do
gem 'faraday-retry', '~> 2.1', require: false
gem 'github_changelog_generator', '~> 1.18', require: false
end