On Aug 9, 3:29 am, Karthikeyan <mindas...@gmail.com> wrote:
> Hello Rails people.
>
> I tried to push a Rails 3.1 app ( created using cedar stack) to Heroku
> and I encountered the following error
>
> Installing sqlite3 (1.3.4) with native extensions Unfortunately, a
> fatal error has occurred. Please report this error to the Bundler
> issue tracker athttps://github.com/carlhuda/bundler/issuesso that we
> can fix it. Thanks!

SQLite3 is not available as database on Heroku.

Only database available is PostgreSQL:

http://devcenter.heroku.com/articles/database

You need to modify your Gemfile to limit sqlite3 to development/test
environment and add 'pg' gem for production one.

--
Luis Lavena

-- 
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 rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to