]> source.dussan.org Git - redmine.git/commitdiff
Add ability to define plugins' gem dependencies in PluginGemfile (#14030).
authorJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Wed, 13 Aug 2014 09:07:34 +0000 (09:07 +0000)
committerJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Wed, 13 Aug 2014 09:07:34 +0000 (09:07 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13337 e93f8b46-1217-0410-a6f0-8f06a7374b81

Gemfile

diff --git a/Gemfile b/Gemfile
index 343b699d763805276718a10587e917552dd86c28..6f641deb3541fc20593f18dc095a4c6c64a66e4a 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -99,7 +99,7 @@ if File.exists?(local_gemfile)
 end
 
 # Load plugins' Gemfiles
-Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file|
+Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file|
   puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
   #TODO: switch to "eval_gemfile file" when bundler >= 1.2.0 will be required (rails 4)
   instance_eval File.read(file), file