$ rake db:create
(in /home/adrian/sites/tmpee)
Could not find gem 'sqlite3-ruby (>= 0, runtime)' in any of the gem
sources listed in your Gemfile.
Try running `bundle install`.
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: tmpees.test
pool: 5
timeout: 5000
Check all versions, I assume everything is updated, Ruby1.9 Rails 3+
Gem 1.3.7
This error can mean:
1. your Ruby and Gem version isn't fit, update;
2. Your Gemfile contains the line gem 'sqlite3' ... but your gem list
does not - check it from command line 'gem list'. If you want to use
sqlite3 later (good choice) then type 'gem install sqlite3-ruby'
This way your system will have sqlite3 gem, which means later you can
use 'bundle install' (if you wrote it to the Gemfile...)
Anyway first also check if the DBs works properly from console.
I think the same with postgre.
Let me know if you have further problems, but then pls copy-paste here
your versions and OS and gemlist.
good luck,
Zoltán