From 8b9b02c91e0a4408acf70d00ace0957c634b2c16 Mon Sep 17 00:00:00 2001 From: Antonio MalvaGomes Date: Thu, 4 Jan 2018 19:15:35 -0500 Subject: [PATCH] Adds test-unit to Gemfile When first cloning this repository and executing the following: ``` bundle install bundle exec rake test ``` the user is met with an error related to `test/unit` being a file that does not exist during the require at the top of the first test file. Adding this to the Gemfile and rebundling resolves the issue. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index db2a61d..292292c 100644 --- a/Gemfile +++ b/Gemfile @@ -7,6 +7,7 @@ source "http://rubygems.org" group(:test) do gem('rake', '>= 0.9.2') + gem('test-unit', '>= 3.1.8') gem('ffi-geos', '>= 0.0.4') gem('rgeo', '>= 0.3.13') gem('rdoc', '>= 3.12')