From 663559f158ccc870b4f956b729067d3151c118c3 Mon Sep 17 00:00:00 2001 From: Greg Sutcliffe Date: Sat, 21 Feb 2015 17:38:48 +0000 Subject: [PATCH] Add db bundler groups so they can be excluded with --without --- Gemfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 7fc36d56..f4f1e4e2 100644 --- a/Gemfile +++ b/Gemfile @@ -16,11 +16,12 @@ gem 'uglifier', '>=1.3.0' gem 'jquery-rails' -# you may comment out the database driver you will not be using. +# you may comment out the database driver(s) you will not be using. # This will prevent a native build of the driver. Building native drivers is not -# always possible on all hosters -gem "sqlite3" -gem "mysql2" +# always possible on all platforms +# Alternatively use --without arguments to bundler to not install that group +gem "sqlite3", group: :sqlite +gem "mysql2", group: :mysql gem "RedCloth" gem "sanitize"