From: Jean-Philippe Lang Date: Wed, 2 May 2012 16:20:32 +0000 (+0000) Subject: Fixed path for loading plugin Gemfile (#10811). X-Git-Tag: 2.0.0~68 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d2278b63a1e69eafd9a17d0a9f84f0d5cc01bc8a;p=redmine.git Fixed path for loading plugin Gemfile (#10811). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9614 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/Gemfile b/Gemfile index ad4c157a4..b6051aaba 100644 --- a/Gemfile +++ b/Gemfile @@ -83,7 +83,7 @@ if File.exists?(local_gemfile) end # Load plugins' Gemfiles -Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file| +Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file| puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` instance_eval File.read(file) end