nilenso/ashoka-survey-web

Bundle install Issues.

vibinnair opened this issue · 3 comments

Hi,
I cloned the repo and tried to run the application. However while running bundle install faced the following issues:

https://gist.github.com/4328416.

I was able to resolve the above mentioned issues.
Hope this is helpful for others facing the same problem.

I am running
Ubuntu 11.10 - 64 bit edition
Ruby 1.9.3
Rails 3.2.8

Issue 1: bundle-error-rake

updating the rubygems-bundler resolved this issue.

gem update rubygems-bundler

(Reference: http://tinyurl.com/d3maqaf)

Issue 2: bundle-error-capybara

Installing libqt4-dev fixed this issue

sudo apt-get install libqt4-dev

(Reference: http://tinyurl.com/c45y4nz)

Issue 3: bundle-error-pg

Installing libqt4-dev fixed this issue

sudo apt-get install libpq-dev

(Reference: http://tinyurl.com/bttu8uq)

Hi @vibinnair. Glad you resolved the issue. I'll go ahead and add your solutions to the README.

@timothyandrew , Thank you .