Hello, 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 On nov. 26, 05:02, Adrian Berg <[email protected]> wrote: > $ 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`. > > So I ran bundle install and got the same error. > > This is my config/database.yml file: > > development: > adapter: postgresql > encoding: unicode > database: tmpees.development > pool: 5 > timeout: 5000 > > # 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 > > production: > adapter: postgresql > database: tmpees.production > pool: 5 > timeout: 5000 > > Thank you for your patience with a noob. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

