From 8b73f866cf5bfa92f63417ed7a956a9a45e387d4 Mon Sep 17 00:00:00 2001 From: Dana Merrick Date: Mon, 26 Oct 2015 13:37:04 -0700 Subject: [PATCH] Adding support for Mongo 3.0 c.p. http://stackoverflow.com/a/32913263 Basically Mongo 3.0 uses SCRAM-SHA-1 for auth, so projects created on Heroku after MongoLab moved to Mongo 3 will not deploy. You get the error in the link above. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index c493c74..ea26a6b 100644 --- a/Gemfile +++ b/Gemfile @@ -12,6 +12,7 @@ gem 'rack-flash3' gem 'rack_csrf' gem 'erubis' gem 'sinatra' +gem 'mongo', '~> 1.12' gem 'mongo_mapper' gem 'bson_ext' gem 'einhorn'