From 209738fcbf7bc6bbc76e210e7097f5a580224317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hern=C3=A1n=20Lucas=20Pereira?= Date: Tue, 19 Aug 2014 10:38:30 -0300 Subject: [PATCH] Temporary fix to treetop dependency issue dwc-archive depends on parsley-store which in turn it depends on biodiversity (~> 3.1). Unfortunately biodiversity (3.1.5) depends on treetop (~> 1.5) whereas rails requires and older version. The workaround forces the use of biodiversity (3.1.4) gem to temporarily fix the problem. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 0771a7afc6..23f53dc283 100644 --- a/Gemfile +++ b/Gemfile @@ -63,6 +63,7 @@ gem 'paper_trail', '~> 3.0.0' # DwC-A archive handling gem 'dwc-archive', '~> 0.9.11' +gem 'biodiversity', '3.1.4' # Workaround rails' treetop dependency incompatibility with dwc-archive gem 'validates_timeliness', '~> 3.0.14'