aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorYehuda Katz <wycats@Yehuda-Katz.local>2009-12-31 18:49:27 -0800
committerYehuda Katz <wycats@Yehuda-Katz.local>2009-12-31 18:49:27 -0800
commit7789663a7d8647f5a20c585dc177cbd18aace1c3 (patch)
treeadbecfce2b00c30c16db04809156451d046631fe /Gemfile
parent50aa876f3276aabfac16aea90ba5f6b45b4cbffc (diff)
downloadrails-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--Gemfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 015c6ab918..2aca5065f5 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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"