Well. I fixed it myself.. I think sqlite3 gem doesnt work well with fedora. enough if you have sqlite3-ruby gem. But dont forget to edit the Gemfile of your project once you create it..
Initially, your Gemfile will be like.. gem 'sqlite3' . . #gem 'sqlite3-ruby', :require => 'sqlite3' Change it to, #gem 'sqlite3' . . gem 'sqlite3-ruby', :require => 'sqlite3' Now it will work very well. -- Posted via http://www.ruby-forum.com/. -- 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.

