From 52bb8ba394ad02ae3da4960998517347d5d35142 Mon Sep 17 00:00:00 2001 From: Rodrigo Souto Date: Thu, 19 Feb 2015 17:09:23 -0300 Subject: [PATCH] Gemfile: allow custom dependencies to be loaded through Gemfile --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 0a503f8..9990816 100644 --- a/Gemfile +++ b/Gemfile @@ -41,9 +41,12 @@ group :cucumber do gem 'selenium-webdriver', '~> 2.39.0' end +# Requires custom dependencies +eval(File.read('config/Gemfile'), binding) rescue nil + # include gemfiles from enabled plugins # plugins in baseplugins/ are not included on purpose. They should not have any # dependencies. Dir.glob('config/plugins/*/Gemfile').each do |gemfile| eval File.read(gemfile) -end +end \ No newline at end of file -- libgit2 0.21.2