On Mon, Mar 28, 2011 at 6:54 AM, Sam Simmons <[email protected]> wrote:
> following instructions for installing Gitorious on RHEL - Installing and > Setting Up Gitorious on RHEL > 5<http://gitorious.org/gitorious/pages/Rhel_Installation> > > When trying to run rake gems:install I get the following trace: > > gitorious]$ sudo /opt/ruby-enterprise/bin/rake gems:install --trace > (in /var/www/html/gitorious) > rake aborted! > Bundler couldn't find some gems. Did you run `bundle install`? > Sam, The problem here is that we've moved our dependency management to Bundler, as described on the blog: http://blog.gitorious.org/2011/02/17/gitorious-moves-gem-management-to-bundler/- this simplifies the install process a lot, but it seems the RHEL installation docs haven't been updated yet. You should be able to resolve this by: $ gem install bundler $ bundle install You should not need to install any Ruby libraries any other way (ie. rake gems:install etc), Bundler will take care of all Ruby dependencies for you. Cheers, - Marius -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected]
