[ARVADOS] updated: 2bf563e0e007fc4252c7a7c4db06f3c775b72320
Git user
git at public.curoverse.com
Mon Jun 13 10:19:32 EDT 2016
Summary of changes:
doc/_includes/_install_ruby_and_bundler.liquid | 4 ++--
doc/install/install-shell-server.html.textile.liquid | 2 +-
doc/sdk/cli/install.html.textile.liquid | 4 ++--
doc/sdk/ruby/index.html.textile.liquid | 4 ++--
4 files changed, 7 insertions(+), 7 deletions(-)
via 2bf563e0e007fc4252c7a7c4db06f3c775b72320 (commit)
from 1e8ce3e1d472c2497172c602a2400cd7a7672e9b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 2bf563e0e007fc4252c7a7c4db06f3c775b72320
Author: Brett Smith <brett at curoverse.com>
Date: Mon Jun 13 10:16:07 2016 -0400
9309: Bugfix Ruby source install instructions for CentOS.
* Add missing `make` dependency.
* Add `-i` to `sudo gem install` throughout. Red Hat adds /usr/local
paths to $PATH in `/etc/profile`, so we need `-i` to find `gem`.
Refs #9309.
diff --git a/doc/_includes/_install_ruby_and_bundler.liquid b/doc/_includes/_install_ruby_and_bundler.liquid
index cd1aeaf..d4ddbb9 100644
--- a/doc/_includes/_install_ruby_and_bundler.liquid
+++ b/doc/_includes/_install_ruby_and_bundler.liquid
@@ -36,7 +36,7 @@ Install prerequisites for CentOS 6:
<pre><code><span class="userinput">sudo yum install \
libyaml-devel glibc-headers autoconf gcc-c++ glibc-devel \
patch readline-devel zlib-devel libffi-devel openssl-devel \
- automake libtool bison sqlite-devel tar
+ make automake libtool bison sqlite-devel tar
</span></code></pre></notextile>
Install prerequisites for Ubuntu 12.04 or 14.04:
@@ -59,5 +59,5 @@ cd ruby-2.1.7
make
sudo make install
-sudo gem install bundler</span>
+sudo -i gem install bundler</span>
</code></pre></notextile>
diff --git a/doc/install/install-shell-server.html.textile.liquid b/doc/install/install-shell-server.html.textile.liquid
index 3d3f4b4..6f7de40 100644
--- a/doc/install/install-shell-server.html.textile.liquid
+++ b/doc/install/install-shell-server.html.textile.liquid
@@ -36,7 +36,7 @@ Next, install the arvados-cli Ruby gem. If you're using RVM:
If you're not using RVM:
<notextile>
-<pre><code>~$ <span class="userinput">sudo gem install arvados-cli</span>
+<pre><code>~$ <span class="userinput">sudo -i gem install arvados-cli</span>
</code></pre>
</notextile>
diff --git a/doc/sdk/cli/install.html.textile.liquid b/doc/sdk/cli/install.html.textile.liquid
index 9db56b9..7ef45aa 100644
--- a/doc/sdk/cli/install.html.textile.liquid
+++ b/doc/sdk/cli/install.html.textile.liquid
@@ -24,7 +24,7 @@ h3. Option 1: Install with RubyGems
<notextile>
<pre>
-$ <code class="userinput">sudo gem install arvados-cli</code>
+$ <code class="userinput">sudo -i gem install arvados-cli</code>
</pre>
</notextile>
@@ -35,6 +35,6 @@ h3. Option 2: Build and install from source
$ <code class="userinput">git clone https://github.com/curoverse/arvados.git</code>
$ <code class="userinput">cd arvados/sdk/cli</code>
$ <code class="userinput">gem build arvados-cli.gemspec</code>
-$ <code class="userinput">sudo gem install arvados-cli-*.gem</code>
+$ <code class="userinput">sudo -i gem install arvados-cli-*.gem</code>
</pre>
</notextile>
diff --git a/doc/sdk/ruby/index.html.textile.liquid b/doc/sdk/ruby/index.html.textile.liquid
index 11dfcfb..b78a37d 100644
--- a/doc/sdk/ruby/index.html.textile.liquid
+++ b/doc/sdk/ruby/index.html.textile.liquid
@@ -22,7 +22,7 @@ h4. Option 1: install with RubyGems
<notextile>
<pre>
-$ <code class="userinput">sudo gem install arvados</code>
+$ <code class="userinput">sudo -i gem install arvados</code>
</pre>
</notextile>
@@ -33,7 +33,7 @@ h4. Option 2: build and install from source
$ <code class="userinput">git clone https://github.com/curoverse/arvados.git</code>
$ <code class="userinput">cd arvados/sdk/ruby</code>
$ <code class="userinput">gem build arvados.gemspec</code>
-$ <code class="userinput">sudo gem install arvados-*.gem</code>
+$ <code class="userinput">sudo -i gem install arvados-*.gem</code>
</pre>
</notextile>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list