forked from ManageIQ/manageiq-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
17 lines (14 loc) · 629 Bytes
/
Gemfile
File metadata and controls
17 lines (14 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
source 'https://rubygems.org'
gemspec
# Load Gemfile with dependencies from manageiq
manageiq_gemfile = File.expand_path("spec/manageiq/Gemfile", __dir__)
if File.exist?(manageiq_gemfile)
eval_gemfile(manageiq_gemfile)
else
puts "ERROR: The ManageIQ application must be present in spec/manageiq."
puts " Clone it from GitHub or symlink it from local source."
exit 1
end
# Load other additional Gemfiles
# Developers can create a file ending in .rb under bundler.d/ to specify additional development dependencies
Dir.glob(File.join(__dir__, 'bundler.d/*.rb')).each { |f| eval_gemfile(File.expand_path(f, __dir__)) }