diff options
author | Christopher Diaz Riveros <chrisadr@gentoo.org> | 2018-05-27 08:45:25 -0500 |
---|---|---|
committer | Christopher Diaz Riveros <chrisadr@gentoo.org> | 2018-05-27 08:45:25 -0500 |
commit | 1b2454503ef565bb7cf523922d3e9f2532a24c00 (patch) | |
tree | 4ba385fb87fd4b0d611e94a976a01b8b9ab230fa | |
parent | .gitignore: Add rules (diff) | |
download | glsamaker-1b2454503ef565bb7cf523922d3e9f2532a24c00.tar.gz glsamaker-1b2454503ef565bb7cf523922d3e9f2532a24c00.tar.bz2 glsamaker-1b2454503ef565bb7cf523922d3e9f2532a24c00.zip |
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 <chrisadr@gentoo.org>
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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' |