rails3で開発環境はsqlite3、本番環境はpostgresqlとかにするときに 開発環境にpostgresqlやMysqlを入れずにbundleを実行する Gemfile: ----------------------------- group :production do gem 'pg' end ----------------------------- $ bundle install --without production