diff --git a/doc/manual/installation.md b/doc/manual/installation.md index a83eeb3364..f30160c010 100644 --- a/doc/manual/installation.md +++ b/doc/manual/installation.md @@ -72,15 +72,14 @@ Remove the old Ruby versions if present: Download Ruby and compile it: mkdir /tmp/ruby && cd /tmp/ruby - curl -L --progress-bar https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.4.tar.xz | tar xJ - cd ruby-3.2.4 + curl -L --progress-bar https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.6.tar.xz | tar xJ + cd ruby-3.2.6 ./configure --disable-install-rdoc make -j`nproc` sudo make install -Update rubygems and install foreman: +Install foreman: - sudo gem update --system --no-document sudo gem install foreman --no-document ## 3. System Users diff --git a/doc/manual/update.md b/doc/manual/update.md index e43e7c8bdc..554266c3d1 100644 --- a/doc/manual/update.md +++ b/doc/manual/update.md @@ -62,8 +62,8 @@ Upgrade when required: ``` mkdir /tmp/ruby && cd /tmp/ruby -curl -L --progress https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.4.tar.xz | tar xJ -cd ruby-3.2.4 +curl -L --progress https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.6.tar.xz | tar xJ +cd ruby-3.2.6 ./configure --disable-install-rdoc make -j`nproc` sudo make install @@ -72,15 +72,6 @@ sudo gem install rake bundler foreman --no-document ### 5. Install gems, migrate and precompile assets -Ensure you have rubygems 2.7.0+ installed: - -``` -gem -v - -# Update rubygems if the version is too old -sudo gem update --system --no-document -``` - ``` cd /home/huginn/huginn bundle config set --local deployment 'true'