added possibility to install all database gems
…via DB=all bundle install, useful for development
This commit is contained in:
parent
95aad7f15d
commit
28b6e276f8
1 changed files with 3 additions and 3 deletions
6
Gemfile
6
Gemfile
|
|
@ -1,8 +1,8 @@
|
|||
source 'http://rubygems.org'
|
||||
|
||||
gem 'mysql2', '0.2.6' if ENV['DB'].nil? || ENV['DB'] == "mysql"
|
||||
gem 'pg' if ENV['DB'] == "postgres"
|
||||
gem 'sqlite3' if ENV['DB'] == "sqlite"
|
||||
gem 'mysql2', '0.2.6' if ENV['DB'].nil? || ENV['DB'] == 'all' || ENV['DB'] == "mysql"
|
||||
gem 'pg' if ENV['DB'] == 'all' || ENV['DB'] == "postgres"
|
||||
gem 'sqlite3' if ENV['DB'] == 'all' || ENV['DB'] == "sqlite"
|
||||
gem 'rails', '3.0.10'
|
||||
gem 'foreigner', '0.9.1'
|
||||
gem 'activerecord-import'
|
||||
|
|
|
|||
Loading…
Reference in a new issue