Created
January 25, 2018 20:57
-
-
Save priley86/4b10d5b87f79320c8701ad6134e678a2 to your computer and use it in GitHub Desktop.
classic-ui
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment