From 647b9a4692f142576df7529b4516f262dc3e8269 Mon Sep 17 00:00:00 2001 From: RageLtMan Date: Mon, 20 Oct 2014 13:09:08 -0400 Subject: [PATCH] Enforce dav4rack verion in Gemfile Existing DMSF installations using older versions of dav4rack will not install the appropriate version when bundle install is called. Require version 0.3.0 of the gem as it contains the Utils name space, not present in 0.2.11. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 40176738..c9cb0bd0 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ gem 'rubyzip', '>= 1.0.0' gem 'zip-zip' # Just to avoid 'cannot load such file -- zip/zip' error gem 'simple_enum' gem 'uuidtools', '~> 2.1.1' -gem 'dav4rack' +gem 'dav4rack', '~> 0.3.0' group :production do gem 'nokogiri', '>= 1.5.10'