From 1b2454503ef565bb7cf523922d3e9f2532a24c00 Mon Sep 17 00:00:00 2001 From: Christopher Diaz Riveros Date: Sun, 27 May 2018 08:45:25 -0500 Subject: Gemfile: Add rake specific version Problems in the rails server suggest that rake > 10.4.2 is not compatible with the current state from the web application, we need to declare specific version in Gemfile to ensure that a good version is available to run services. Signed-off-by: Christopher Diaz Riveros --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index b7baef3..cb89df2 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,7 @@ source 'https://rubygems.org' gem 'rails', '4.2.0' +gem 'rake', '10.4.2' # Bundle edge Rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git' -- cgit v1.2.3-65-gdbad