forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
24 lines (20 loc) · 817 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source 'https://rubygems.org'
gemspec
#
# Custom Gemfile modifications
#
# Load developer specific Gemfile
# Developers can create a file called Gemfile.dev.rb containing any gems for
# their local development. This can be any gem under evaluation that other
# developers may not need or may not easily install, such as rails-dev-boost,
# any git based gem, and compiled gems like rbtrace or memprof.
dev_gemfile = File.expand_path("Gemfile.dev.rb", __dir__)
eval_gemfile(dev_gemfile) if File.exist?(dev_gemfile)
manageiq_gemfile = File.realpath("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