Last active
December 21, 2016 13:22
-
-
Save dgmike/cd3f85d8d1d0cb358c01e6dfca6bca58 to your computer and use it in GitHub Desktop.
put this in your Gemfile, from redmine ;-)
This file contains 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
# load Gemfile.local if it exists | |
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") | |
eval_gemfile local_gemfile if File.exists?(local_gemfile) | |
# Load plugins' Gemfiles | |
Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| | |
eval_gemfile file | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment