diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-02 16:20:32 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-05-02 16:20:32 +0000 |
commit | d2278b63a1e69eafd9a17d0a9f84f0d5cc01bc8a (patch) | |
tree | e88b6165d36effc102f9114b143cb18d4905ea7c /Gemfile | |
parent | d658ab22d60edae6593ed0b1ed65bbe82225b77a (diff) | |
download | redmine-d2278b63a1e69eafd9a17d0a9f84f0d5cc01bc8a.tar.gz redmine-d2278b63a1e69eafd9a17d0a9f84f0d5cc01bc8a.zip |
Fixed path for loading plugin Gemfile (#10811).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9614 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |