Merge pull request #1764 from GregSutcliffe/master

Add db bundler groups so they can be excluded with --without
This commit is contained in:
Dan Rice 2015-02-21 14:59:58 -05:00
commit ef33ce5bbc

View file

@ -16,11 +16,12 @@ gem 'uglifier', '>=1.3.0'
gem 'jquery-rails' 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 # This will prevent a native build of the driver. Building native drivers is not
# always possible on all hosters # always possible on all platforms
gem "sqlite3" # Alternatively use --without <group> arguments to bundler to not install that group
gem "mysql2" gem "sqlite3", group: :sqlite
gem "mysql2", group: :mysql
gem "RedCloth" gem "RedCloth"
gem "sanitize" gem "sanitize"