我在我的 Mac 上安装了 postgres,并第一次使用 Rails 进行了尝试。我包括 gem "pg" 并删除了 sqlite3 gem(毕竟,如果使用前者,为什么需要后者)。但是,当我尝试启动服务器时,我收到了此错误消息
.rvm/gems/ruby-1.9.3-rc1@rails321/gems/bundler-1.0.22/lib/bundler/rubygems_integration.rb:143:in `block in replace_gem': Please install the sqlite3 adapter: `gem install activerecord-sqlite3-adapter` (sqlite3 is not part of the bundle. Add it to Gemfile.) (LoadError)
所以我再次包含了 sqlite3 gem,现在服务器工作正常,但我实际上不知道我的测试应用程序使用的是 sqlite3 还是 pg?
a) 如果我打算使用 pg gem,我应该安装 sqlite3 gem 吗?b)如果我只应该安装两个中的一个,有没有办法找出我的测试应用程序当前正在使用哪个(因为它们都在 Gemfile 中)
宝石文件
source 'https://rubygems.org'
gem 'rails', '3.2.1'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'devise'
gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'