On Sat, Mar 5, 2011 at 9:43 PM, Gaba Luschi <[email protected]> wrote:
> One of the things I noticed that it said is: > > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.7/lib/bundler/runtime.rb:64: > in 'require': no such file to load --sqlite3 <LoadError> > > Do you that's it? Basically what happened was I first installed Ruby > 1.9.2, then Rails, but ran into some problems, so then installed > instantrails, which included the whole package, but used ruby 1.8.7. > Now, sqlite3 was installed as part of that, but I'm not sure why I am > getting this error. How do I check to make sure the migrations took > place, etc.? > First, when you push your app to heroku, make sure you are not getting any errors. Once you push to heroku run: heroku rake db:create db:migrate (and if you want, db:seed) I dont think you have to do db:create but I do it just for the heck of it. Heroku does not automatically create your db. Not sure if this is your issue. If you still have trouble I recommend to delete your heroku app and then start over creating it on heroku. Save all the output you get from heroku and if you hit a snag it will help a lot if you would post the progression here so we can be of more specific help. > > -- > 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. > > -- 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.

