-
- Téléchargements
Replace DB environment variable with optional bundler groups
See the changes to the changelog for more details
Affichage de
- .travis.yml 3 ajouts, 3 suppressions.travis.yml
- Changelog.md 14 ajouts, 0 suppressionChangelog.md
- Gemfile 6 ajouts, 4 suppressionsGemfile
- Gemfile.lock 5 ajouts, 0 suppressionGemfile.lock
- config/database.yml.example 10 ajouts, 12 suppressionsconfig/database.yml.example
- config/eye.rb 1 ajout, 1 suppressionconfig/eye.rb
- script/ci/build.sh 2 ajouts, 2 suppressionsscript/ci/build.sh
- script/server 0 ajout, 5 suppressionsscript/server
... | @@ -60,10 +60,12 @@ gem "autoprefixer-rails", "5.1.11" | ... | @@ -60,10 +60,12 @@ gem "autoprefixer-rails", "5.1.11" |
# Database | # Database | ||
ENV["DB"] ||= "mysql" | group :mysql, optional: true do | ||
gem "mysql2", "0.3.18" | |||
gem "mysql2", "0.3.18" if ENV["DB"] == "all" || ENV["DB"] == "mysql" | end | ||
gem "pg", "0.18.1" if ENV["DB"] == "all" || ENV["DB"] == "postgres" | group :postgresql, optional: true do | ||
gem "pg", "0.18.1" | |||
end | |||
gem "activerecord-import", "0.7.0" | gem "activerecord-import", "0.7.0" | ||
... | ... |
Veuillez vous inscrire ou vous se connecter pour commenter