diff options
author | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-12-31 18:49:27 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-12-31 18:49:27 -0800 |
commit | 7789663a7d8647f5a20c585dc177cbd18aace1c3 (patch) | |
tree | adbecfce2b00c30c16db04809156451d046631fe /Gemfile | |
parent | 50aa876f3276aabfac16aea90ba5f6b45b4cbffc (diff) | |
download | rails-7789663a7d8647f5a20c585dc177cbd18aace1c3.tar.gz rails-7789663a7d8647f5a20c585dc177cbd18aace1c3.tar.bz2 rails-7789663a7d8647f5a20c585dc177cbd18aace1c3.zip |
Put MySQL and Postgres in an :only block so you can gem bundle --only default to leave out MySQL and Postgres
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -13,8 +13,11 @@ gem "i18n", ">= 0.3.0" # AR gem "arel", "0.2.pre", :git => "git://github.com/rails/arel.git" gem "sqlite3-ruby", ">= 1.2.5" -gem "pg", ">= 0.8.0" -gem "mysql", ">= 2.8.1" + +only :test do + gem "pg", ">= 0.8.0" + gem "mysql", ">= 2.8.1" +end # AP gem "rack", "1.1.0", :git => "git://github.com/rack/rack.git" |