Commit b6e3f391e74bfcd382e29a358271d3692587c1ce

Authored by Tandrial
1 parent 477e9f87

Update ruby.md

Trying to install the gem bundle without bundler fails with:
/usr/local/lib/ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'bundler' (>= 0) among 8 total gem(s) (Gem::LoadError)
        from /usr/local/lib/ruby/2.0.0/rubygems/dependency.rb:307:in `to_spec'
        from /usr/local/lib/ruby/2.0.0/rubygems/core_ext/kernel_gem.rb:47:in `gem'
        from /usr/local/bin/bundle:22:in `<main>'

Installing the bundler (with sudo gem install bundler) at the end of Step 4 fixes this.
Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
doc/update/ruby.md
@@ -32,6 +32,7 @@ cd ruby-2.0.0-p353 @@ -32,6 +32,7 @@ cd ruby-2.0.0-p353
32 ./configure --disable-install-rdoc 32 ./configure --disable-install-rdoc
33 make 33 make
34 sudo make install # overwrite the existing Ruby in /usr/local/bin 34 sudo make install # overwrite the existing Ruby in /usr/local/bin
  35 +sudo gem install bundler
35 ``` 36 ```
36 37
37 ### 5. Reinstall GitLab gem bundle 38 ### 5. Reinstall GitLab gem bundle